当我导航到 http://localhost:54763/Colorbox/Service.svc/GetCustomers, 我显示了json数据..
但是在客户端这没有生成我需要的json数据..为什么?
$.ajax(
{
type: "POST",
url: "../Service.svc/GetCustomers",
dataType: "json",
data: {},
contentType: "application/json; charset=utf-8",
success: function (json) {
var output = json;
$('#MyTemplateOutput').html(output);
});
}
});
答案 0 :(得分:4)
你应该尝试使用这样的完整网址并编辑这一行:
url: "http://localhost:54763/Colorbox/Service.svc/GetCustomers",
尝试一下,看看你是否得到回复。