#index.html window.location.href = "../home.html?value=" + rec_value; #home.html <script> var a = GetRequest(); console.log(a); function GetRequest() { var url = location.search; //获取url中"?"符后的字串 var theRequest = new Object(); if…
先说下需求:在原来的WebApi项目中增加对js跨域的请求支持,请求方式:以POST为主,webapi路由规则根据原项目需求修改如下: public static void Register(HttpConfiguration config) { // Web API configuration and services // Web API routes config.MapHttpAttributeRoutes(); config.Routes.MapHttpRoute( name: "De…