0
我正在使用jquery ajax post方法將表單參數提交給JAXRS服務。黑莓jQuery AJAX dataparam傳遞問題
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "http://xyz.in/webservice.asmx/backup_p",
data: "{ 'id': '1', 'data': '4' }",
dataType: "json",
success: function (msg) {
alert('sucess !!!');
alert(msg.d);
},
error: function (jqXHR, textStatus, errorThrown) {
alert('hello');
alert(jqXHR + " : " + textStatus + " : " + errorThrown);
}
});
在將輸入值作爲dataParam提交之前,我將轉換爲JSON格式。它在黑莓手機以外的所有設備上工作。在黑莓設備中,請求參數將作爲空發送。我無法在JAXRS資源層中獲取任何請求參數值。這個問題的根源是什麼?