我正在尝试使 OPTIONS 请求与 django 一起使用,但我目前只得到 405。我在这里得到的答案是服务器不处理 OPTIONS 请求。
这是处理请求的视图:
from django.views.generic import View
from piston.utils import coerce_put_post
class TheView(View):
@staticmethod
def find_stuff(params):
...
@staticmethod
def do_stuff(params):
...
@staticmethod
def do_other_stuff(params):
...
@staticmethod
def delete_some_stuff(params):
...
@method_decorator(staff_member_required)
def get(self, request, id):
result = self.find_stuff(id)
return JsonResponse(result)
@method_decorator(staff_member_required)
def post(self, request):
result = self.do_stuff(request.POST)
return JsonResponse(result)
@method_decorator(staff_member_required)
def put(self, request, id):
coerce_put_post(request)
result = self.do_other_stuff(id,request.PUT)
return JsonResponse(result)
@method_decorator(staff_member_required)
def delete(self, request,id):
result = self.delete_some_stuff(id)
return JsonResponse(result)
我正在使用 jQuery 的 $.ajax() 发送请求。这是chrome的开发工具捕获的网络日志:
- 请求网址:
http://localhost
- 请求方法:选项
- 状态代码:405 方法不允许
请求标头
- 接受:/
- 接受编码:gzip、deflate、sdch
- 接受语言:de,en-US;q=0.8,en;q=0.6
- 访问控制请求标头:接受、来源、内容类型
- 访问控制请求方法:PUT
- 缓存控制:无缓存
- 连接:保持活动
- 主持人:傅
- 产地:
http://localhost
- Pragma : 无缓存
- 推荐人:
http://localhost/bar
- 用户代理:Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36
响应标头
- 访问控制允许凭据:真
- 访问控制允许标头:内容类型、编译指示、缓存控制
- 访问控制允许方法:POST、GET、OPTIONS、PUT、DELETE
- 访问控制允许来源:
http://localhost
- 允许:发布、获取、选项、放置、删除
- 内容类型:文本/html;字符集=utf-8
- 日期:格林威治标准时间 2013 年 8 月 9 日星期五 09:39:41
- 服务器:WSGIServer/0.1 Python/2.7.4
那么我怎样才能让 django 服务器来处理它呢?