0
私はpython json httpサーバーを使用し、このサーバーでionicとポストjsonが必要ですが、http postメソッドは、オプションtype.i送信post type.whats問題を送信する必要がありますか?イオンとpythonサーバーでhttpポスト
サーバー:
def do_POST(self):
content_len = int(self.headers.getheader('content-length'))
post_body = self.rfile.read(content_len)
self.send_response(200)
self.end_headers()
data = json.loads(post_body)
self.wfile.write(data['id'])
return
イオンHTTP POSTメソッド:Pythonのサーバーから
が$http.post(url, JSON.stringify({"id":"1"})).success(function (res) {
console.log("res" + res);
}).error(function (data, status, headers, config) {
console.log(data, status, headers,JSON.stringify (config));
});
エラー:
これはクロスオリジンリソース共有(CORS)プリフライトのように見えます192.168.1.4 - - [10/Mar/2017 02:36:28] code 501, message Unsupported method ('OPTIONS')
192.168.1.4 - - [10/Mar/2017 02:36:28] "OPTIONS/HTTP/1.1" 501 -