1

问题是什么,调用服务在本地时工作正常,但在联机时显示 Given URL is not allowed by the Application configuration应用程序设置不允许一个或多个给定 URL。

它必须与网站 URL 或画布 URL 匹配,或者域必须是控制台日志中应用程序域之一的子域?

代码:

 function CallService(serviceurl) {
         alert(serviceurl);
         $.ajax({
                 Type: "GET", 
                 contentType: "html",
                 url: serviceurl,
                 success: function (arg) {
                          console.log(arg);
                          if (arg != "") {
                          if (arg == "nodata") {
                          console.log(arg); 
                          chkData = false;
                          $('#loading').empty(); return; } 
                          $("#dynamiccontainer").append(arg);
                          chckGamesDisplayed = false; } $('#loading').empty();
                         } 
                      }
           );} 
4

1 回答 1

2

早些时候我使用 var serviceurl = document.getElementById('hfbasicurl').value + "/Pages/abc.aspx?Id=" + id;

使用下面的代码,它现在工作正常

var serviceurl = "Pages/abc.aspx?Id=" + id;
于 2013-07-02T07:50:56.787 回答