我正在开发 Bottle Web 框架上的 Web 服务的 RESTful API,并希望通过 jQuery AJAX 调用访问资源。
使用 REST 客户端,资源接口按预期工作并正确处理 GET、POST、... 请求。但是在发送 jQuery AJAX POST 请求时,生成的 OPTIONS 预检请求被简单地拒绝为“405:不允许方法”。
我尝试在 Bottle 服务器上启用 CORS - 如此处所述:http: //bottlepy.org/docs/dev/recipes.html#using-the-hooks-plugin 但OPTIONS 请求从未调用after_request 挂钩。
这是我的服务器的摘录:
from bottle import Bottle, run, request, response
import simplejson as json
app = Bottle()
@app.hook('after_request')
def enable_cors():
print "after_request hook"
response.headers['Access-Control-Allow-Origin'] = '*'
response.headers['Access-Control-Allow-Methods'] = 'GET, POST, PUT, OPTIONS'
response.headers['Access-Control-Allow-Headers'] = 'Origin, Accept, Content-Type, X-Requested-With, X-CSRF-Token'
@app.post('/cors')
def lvambience():
response.headers['Content-Type'] = 'application/json'
return "[1]"
[...]
jQuery AJAX 调用:
$.ajax({
type: "POST",
url: "http://192.168.169.9:8080/cors",
data: JSON.stringify( data ),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data){
alert(data);
},
failure: function(err) {
alert(err);
}
});
服务器只记录一个 405 错误:
192.168.169.3 - - [23/Jun/2013 17:10:53] "OPTIONS /cors HTTP/1.1" 405 741
$.post 确实有效,但无法发送 PUT 请求会破坏 RESTful 服务的目的。那么如何允许处理 OPTIONS 预检请求呢?