1

我正在尝试从 Jquery 调用 WCF 服务。但是,如果我用我的机器名称替换 url,它就不起作用。html/jquery 和 WCF 都在同一个网站(项目)上。我认为很多人需要帮助,因为没有办法调试和找出问题。不是不断更改 wcf 服务文件、web.config 文件和 html(ajax 函数)页面,有没有人有一个正在运行的项目有这个问题?

    $.ajax({
        type: "POST",

        //work well 
        //url: "Service1.svc/MyFunction",

        //work well
        //url: "http://localhost:43969/Service1.svc/MyFunction",

        //not work ???
        //url: "http://PWLL-IT-056:43969/Service1.svc/MyFunction",

        data: '{"Count": "' + counter + '"}',
        contentType: "application/json", // content type sent to server
        success: ServiceSucceeded,
        error: ServiceFailed
    });

谢谢各位帮忙,

4

0 回答 0