嗨,我試圖在sencha touch中使用Ajax發出POST請求。 我的問題是當我發送請求我的服務器接受它作爲選項請求。 我的代碼是:
var post_json = {usrname:username,password:password};Sencha Touch中的POST請求
Ext.Ajax.request({
url: 'http://localhost:3000/',
method: "POST",
params: {
user_session: post_json
},
success: function(){
alert("sucessful");
},
failure: function(){
alert("fail");
}
});
我該如何解決這個問題?
你是否也在從http:// localhost:3000 /?這可能是一個可能的重複http://stackoverflow.com/questions/1256593/jquery-why-am-i-getting-an-options-request-insted-of-a-get-request – Nicodemuz 2011-03-26 05:16:55