如何使用$ .ajax

时间:2011-11-16 21:01:12

标签: json jquery

当我导航到 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);
                    });
                }
            });

1 个答案:

答案 0 :(得分:4)

你应该尝试使用这样的完整网址并编辑这一行:

url: "http://localhost:54763/Colorbox/Service.svc/GetCustomers",

尝试一下,看看你是否得到回复。