好笑的是,我有網頁與討論使用SQLAlchemy的Python CGI模塊的JavaScript。
我所做的是發送AJAX請求,但在主體中使用JSON請求而不是XML。 Python CGI模塊使用標準json
模塊將JSON反序列化爲字典。
JavaScript端看起來是這樣的:
function on_request_success(response) {
console.debug('response', response);
}
function on_request_error(r, text_status, error_thrown) {
console.debug('error', text_status + ", " + error_thrown + ":\n" + r.responseText);
}
var request = { ... };
jQuery.ajax({
url: 'http://host/whatever.cgi',
type: 'POST',
cache: false,
data: JSON.stringify(request),
contentType: 'application/json',
processData: false,
success: on_request_success,
error: on_request_error
});
和Python這樣的:
request = json.load(sys.stdin)
response = handle_request(request)
print("Content-Type: application/json", end="\n\n")
json.dump(response, sys.stdout, indent=2)
注意,它不使用Python的CGI模塊,因爲整個請求是在爲JSON通過身體。