关于C#中ajax跨域访问问题

作者:CDL_Darren 时间:2023-03-04 21:28:04 

最近因项目需要,需要跨域请求访问数据。跨域访问是指什么?

[跨域]:指的是浏览器不能执行其他网站的脚本。它是由浏览器的同源策略造成的,是浏览器对JavaScript施加的安全限制。所谓同域是指,域名,协议,端口均相同,不明白没关系,举个栗子:例如,我的电脑上有2个服务器 192.168.0.11和192.168.0.12。如果第一个服务器上的页面要访问第二个服务器上面的数据,就叫做跨域。或者http://www.baidu.com 要访问http://www.xxx.com也是不同域名也是跨域。 下面给出完整请求案例:

前端页面请求代码片:


<script type="text/javascript">
 function ajaxsubmit(name,phone) {
  $.ajax({
   type: "get",
   url: "http://10.10.10.132:35709/AppInterface/ResourceInsert.ashx",
   data: { "share_name": encodeURI(name), "telphone": encodeURI(phone), "fromtype": 4 },
   dataType : "jsonp",
   jsonp: "callback",
   jsonpCallback: "successcallback",
   success: function (json) {
    alert(json.msg);
   },
   error:function(e){
    alert("提交失败!请稍后再试");
   }
  });
 }
</script>

一般处理程序代码片:


public class ResourceInsert : IHttpHandler
{
 public void ProcessRequest(HttpContext context)
 {
  context.Response.ContentType = "application/json";
  context.Response.ContentEncoding = System.Text.Encoding.UTF8;
  cms.Model.Resource model = new Model.Resource();
  cms.BLL.Resource bll = new BLL.Resource();
  //你所需要进行的操作
  model.share_name = HttpUtility.UrlDecode(context.Request["share_name"]);
  model.ask_telphone = HttpUtility.UrlDecode(context.Request["telphone"]);
  model.back_row_one = context.Request["fromtype"];
  ConvertHelper ch = new ConvertHelper();
  model.share_name = ch.RemoveSpecialChar(model.share_name);
  //successcallback为跨域请求回调函数,切记必不可少。获取方式也可以为context.Request["callback"],
  //对应前端页面发起请求的jsonp和jsonpCallback格式为:jsonp_value=jsonpCallback_value
  if (bll.Exists(model.share_name, model.ask_telphone))
  {
   Message temp = new Message(1, "我们已收到您的请求额!请勿重复提交!", null);
   context.Response.Write("successcallback" + "(" + JsonConvert.SerializeObject(temp) + ")");
   context.Response.End();
   return;
  }
  else
  {
   if (bll.Add(model) > 0)
   {
    Message temp = new Message(1, "提交成功,我们工作人员会尽快回复你!感谢关注!", null);
    context.Response.Write("successcallback" + "(" + JsonConvert.SerializeObject(temp) + ")");
    context.Response.End();
    return;
   }
   else
   {
    Message temp = new Message(0, "请确认信息填写无误!", null);
    context.Response.Write("successcallback" + "(" + JsonConvert.SerializeObject(temp) + ")");
    context.Response.End();
    return;
   }
  }
 }
 public bool IsReusable
 {
  get
  {
   return false;
  }
 }
}

你以为到这里完了吗?当然没有/斜眼笑。配置文件中当然不能少,web.config文件中的 system.webServer 节点下 增加如下配置:


<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>

以上所述是小编给大家介绍的关于C#中ajax跨域访问问题网站的支持!

来源:http://blog.csdn.net/cdl_darren/article/details/71730052

标签:c,ajax,跨域
0
投稿

猜你喜欢

  • Linux系统下安装和卸载JDK8的方式

    2023-08-01 15:29:45
  • C++高并发内存池的整体设计和实现思路

    2023-07-03 16:29:31
  • Android 使用ViewPager实现左右循环滑动及轮播效果

    2022-10-28 15:23:21
  • Android7.0 MTK设置默认桌面

    2023-09-26 12:30:43
  • Java关于含有继承类的成员初始化过程讲解

    2022-09-24 23:25:45
  • IntelliJ IDEA安装目录和设置目录的说明(IntelliJ IDEA快速入门)

    2021-08-16 21:17:08
  • 简单讲解Android开发中触摸和点击事件的相关编程方法

    2023-03-30 12:29:10
  • Java基于Runtime调用外部程序出现阻塞的解决方法

    2023-11-09 04:24:23
  • SpringBoot实现RAS+AES自动接口解密

    2022-11-05 04:07:01
  • Springboot如何设置静态资源缓存一年

    2022-04-16 09:45:22
  • Andriod 资源文件之存取操作

    2021-11-22 09:26:52
  • C#中常用的正则表达式

    2023-10-15 21:10:42
  • C#和vb.net实现PDF 添加可视化和不可见数字签名

    2022-08-01 12:49:02
  • java开发_图片截取工具实现原理

    2023-10-23 22:52:06
  • Eclipse+Webservice简单开发实例

    2023-04-10 08:55:29
  • WPF基于物理像素绘制图形

    2022-01-06 20:25:18
  • 一文带你彻底理解Java序列化和反序列化

    2021-12-23 05:24:12
  • c#文件名/路径处理方法示例

    2021-11-28 21:02:40
  • 深入剖析Java编程中的序列化

    2021-06-15 17:10:07
  • Android提高之MediaPlayer音视频播放

    2021-05-29 08:44:37
  • asp之家 软件编程 m.aspxhome.com