1
這裏我在煎茶觸摸2碼JSON響應文本,當我打電話給JSON其正確working.But未能按標題得到具體的響應項目,這裏的 JSON效應初探文本顯示
煎茶
var obj = new Object();
obj.emailID = '[email protected]';
obj.password = 'faz';
var data = Ext.JSON.encode(obj);
Ext.Ajax.request({
url : 'http://117.218.59.157:8080/WishList/Login',
method : "POST",
headers: {
},
params : data,
useDefaultXhrHeader : false,
withCredentials: true,
success : function(response) {
alert(response.responseText);
},
failure : function(response) {
alert(response.responseText);
}
});
如何獲得USERFIRSTNAME從響應並顯示在警報?請幫我整理它出
謝謝。它的工作:) – ioseve