zoukankan      html  css  js  c++  java
  • WebService跨域配置

    1、web.config <configuration>节点下添加以下内容:
      <system.web>
       <webServices>
          <protocols>
            <add name="HttpGet"/>
            <add name="HttpPost"/>
            <add name="HttpSoap"/>
            <add name="Documentation"/>
          </protocols>
        </webServices>
      </system.web>
     
      <system.webServer>
        <httpProtocol>
          <customHeaders>
            <add name="Access-Control-Allow-Methods" value="OPTIONS,POST,GET"/>
            <add name="Access-Control-Allow-Headers" value="x-requested-with,content-type"/>
            <add name="Access-Control-Allow-Origin" value="*"/>
          </customHeaders>
        </httpProtocol>
      </system.webServer>
    2.正确地编写webserivce的代码
     // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。
         [System.Web.Script.Services.ScriptService]
     
    3、 ajax访问WebService使用Post方式请求
  • 相关阅读:
    LeetCode 169. Majority Element
    Object-c block块
    Object-c动态特性
    Object-c基础(2)
    Object-c基础
    LeetCode171:Excel Sheet Column Number
    LeetCode242:Valid Anagram
    LeetCood8:String to Integer
    理解qsort 中的 cmp
    google goble cache
  • 原文地址:https://www.cnblogs.com/boke1/p/10901185.html
Copyright © 2011-2022 走看看