我设置了 ProtoRPC hello 应用程序,但它不起作用我正在使用它发布到它
$.ajax({url: "http://wordninjabackend.appspot.com/hello",
type: 'POST',
contentType: 'application/json',
data: "{ my_name: Bob }",
dataType: 'json',
success: function(response) {
// The response is { hello: “Hello there, Bob!” }
alert(response.hello);
}
});
我得到: 405 Method Not Allowed
应用程序.yaml
application: wordninjabackend
version: 1
api_version: 1
runtime: python
handlers:
- url: .*
script: main.py
好吧,它是应用引擎上的python,它只是示例程序,所以我发到服务器的帖子一定有问题