AttributeError: module 'utils' has no attribute 'response'
来源:3-4 实现个人助手功能清单发布
weixin_慕娘8176391
2021-11-21
def get_menu(request):
gloabl_app_data = init_app_data()
published_app_data = gloabl_app_data.get(‘published’)
response = utils.response.wrap_json_response(code = utils.ReturnCode.SUCCESS,
data = published_app_data)
return JsonResponse(data=response,safe=False)
根据课程, 该段代码提示:AttributeError: module ‘utils’ has no attribute ‘response’
写回答
1回答
-
咚咚呛
2021-12-01
提示utils模块没有response属性,确认下utils文件的内容是否有错误呢?022021-12-22
相似问题