django开发中遇到的问题以及解决方法:
1.You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set.
这个是因为访问的url没有以/结尾,举例:
将 http://127.0.0.1:8000/add_device 改为:
http://127.0.0.1:8000/add_device/即可
2.TemplateDoesNotExist rest_framework/api.html
这个需要在settings.py中注册一下:rest_framework
3.django中提示 django matching query does not exist.
这个是因为使用get函数引起的错误。使用get方法时,当找不到匹配的query时,就会报DoesNotExist exception。 特别是刚开始数据库表还是空的时候,很容易出现这个错误。
解决办法,用try去捕获这个异常即可:
try:
Android_Device.objects.get(serial=json_data['serial']) except Android_Device.DoesNotExist:
# 设备不存在的话,添加设备
device = Android_Device()