1
我正在使用jquery phonegap。PhoneGap,爲什麼ajax post請求不起作用
這工作
$.ajax({url: 'samplefile.html'});
但這並不工作
$.ajax({url: 'samplefile.html', type: 'POST'})
它返回一個404錯誤代碼。爲什麼?
我正在使用jquery phonegap。PhoneGap,爲什麼ajax post請求不起作用
這工作
$.ajax({url: 'samplefile.html'});
但這並不工作
$.ajax({url: 'samplefile.html', type: 'POST'})
它返回一個404錯誤代碼。爲什麼?
這樣做:
$.ajax({
type: "POST",
url: "some.php",
data: { name: "John", location: "Boston" }
})
我認爲它試圖檢索htnl文件這就是爲什麼你得到錯誤。
經過:here