我正在编写django应用程序并遇到错误
'unicode' object has no attribute 'get'
我在这里看到很多问题,但没有人跟我的问题相符。
问题在于views.py中我的方法应返回JSON:
def get_pattern(request, product_id):
"""
Get JSON for needed pattern
"""
data = Patterns.objects.get(related_module=product_id)
product_data = serializers.serialize("json", [data, ])
return product_data
我的urls.py
urlpatterns = [
url(r'^get_pattern(?P<product_id>[0-9]+)/$', views.get_pattern, name='get_pattern'),
我已经尝试了一切。但是当你去/ get_pattern1时它会返回:
Request Method: GET
Request URL: http://xxxxxxx:8000/xxxx/get_pattern1/
Django Version: 1.8.3
Exception Type: AttributeError
Exception Value:
'unicode' object has no attribute 'get'
Exception Location: /home/xxxx/local/lib/python2.7/site- packages/django/middleware/clickjacking.py in process_response, line 31
答案 0 :(得分:10)
return product_data
Django视图必须返回HttpResponse对象,而不是字符串。
bytes = product_data.encode('utf-8')
return django.http.HttpResponse(bytes, content_type='application/json')
(点击劫持中间件引发错误,因为它假设视图的返回值是HttpResponse并在其上调用get()
,但实际上错误地是unicode
字符串。)< / p>