arcgis js 4.x加载地图服务跨域配置(.Net方式)

1.配置DotNet文件下的proxy文件


             mustMatch="true" xmlns="proxy.xsd">
   
                           matchAll="true"/>
   


 

2.在开发前端页面配置:

"esri/core/urlUtils"

urlUtils

 urlUtils.addProxyRule({
                urlPrefix: "http://ip:port",     
                proxyUrl: "http://localhost/DotNet/proxy.ashx"
            })

你可能感兴趣的:(javascript,arcgis,.net)