0

我有一个 aspx 网页,它正在使用 web 服务。该页面是用 javascript 编码的。页面和webservice之间的通信是通过ajax来完成的。当页面触发 ajax 函数时,url 参数被分配给网站 url (localhost/index.aspx#home)。因此,aspx 无法访问 web 服务。此外,我没有在任何地方对 Url 参数做任何事情。

这里有什么问题?有什么解决办法吗?

ajax 代码块在这里:

$.ajax({
type: "POST",

url: ServiceParameter + "/GET_USER_I_BY_EMAIL",

data: "{username:'" + username + "'}",

contentType: "application/json; charset=utf-8",

dataType: "json",

success: function (msg) {

if (msg.d.length == 0 || msg.d == null) {
if (typeof callback == 'function') {
callback(null);
}
}
else if (msg.d <= 0) {
if (typeof callback_err == 'function') {
callback_err(msg.d, 'SendPass');
}
}
else {
var _data = eval("(" + msg.d + ")");
if (typeof callback_err == 'function' && _data[0] != null && typeof _data[0].ErrorCode != 'undefined') {
callback_err(_data, 'SendPass');
}
else if (typeof callback == 'function') {
callback(_data);
}
}
},
error: function (msg) {
if (typeof callback_err == 'function') {
callback_err(-1, 'SendPass');
}
}
});
}
catch (err) {
if (typeof callback_err == 'function') {
callback_err(-2, 'SendPass');
}
}
},  
4

2 回答 2

0

尝试使用下一个代码:

$.post(ServiceParameter + "/GET_USER_I_BY_EMAIL", { username: "myUsername" }, 
    function(data) {
        alert("Data Loaded: " + data)
    }, "json")
    .fail(function() { 
        alert("error"); 
    });
于 2013-06-21T10:54:39.797 回答
0

尝试

$.ajax({
type: "POST",
url: ServiceParameter + "/GET_USER_I_BY_EMAIL",
data: {username:'" + username + "'},
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
 var jsonData = JSON.parse(msg);
 if (jsonData.d.length == 0 || jsonData.d == null) {
 if (typeof callback == 'function') {
 callback(null);
 }
}
于 2013-06-21T11:11:46.053 回答