jquery Programming Glossary: self.send_header
Strange JQuery Error “code 501, message Unsupported method OPTIONS” http://stackoverflow.com/questions/8470414/strange-jquery-error-code-501-message-unsupported-method-options headers Access Control Allow Origin Access Control Allow Methods and Access Control Allow Headers . Also I add a self.send_header 'Access Control Allow Origin' ' ' statement in do_GET method. class MyHandler BaseHTTPRequestHandler def do_OPTIONS self.. ' ' statement in do_GET method. class MyHandler BaseHTTPRequestHandler def do_OPTIONS self self.send_response 200 ok self.send_header 'Access Control Allow Origin' ' ' self.send_header 'Access Control Allow Methods' 'GET POST OPTIONS' self.send_header Access.. def do_OPTIONS self self.send_response 200 ok self.send_header 'Access Control Allow Origin' ' ' self.send_header 'Access Control Allow Methods' 'GET POST OPTIONS' self.send_header Access Control Allow Headers X Requested With def do_GET..
|