xmlhttprequest cannot load No 'Access-Control-Allow-Origin' AJAX跨域请求解决方法

今天使用JQ的AJAX请求数据,出现了下面的错误

$(".content").on('click','.synData',function() { 
        var _this=$(this);
        var response=_this.prev().val();
        var idcard=_this.prev().prev().val();
        $.ajax({
            type:'POST',url:'http://v.juhe.cn/weather/index',data:{
                appkey:localStorage.appkey,token:"0d10e9d06ad1a7106d28841582d6fe1c",doc:"{}"
            },success:function(response){
                console.log(response);
            },error:function(){
                console.log();
            }
        });
    });
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access. The response had HTTP status code 400.

这是一个跨域请求数据的Bug,需要加上

dataType: 'jsonp',
 crossDomain: true,

最后得到的代码

$.ajax({
    type:'POST',data:{
        appkey:localStorage.appkey,doc:"{}"
    },dataType: 'jsonp',crossDomain: true,success:function(response){
        console.log(response);
    },error:function(){
        console.log();
    }
});

我的就解决问题了

相关文章

JS原生Ajax操作(XMLHttpRequest) GET请求 POST请求 兼容性问题 利用iframe模拟ajax 实现表单提交的返回...
AJAX 每日更新前端基础,如果觉得不错,点个star吧 😃 https://github.com/WindrunnerMax/E...
踩坑Axios提交form表单几种格式 前后端分离的开发前后端, 前端使用的vue,后端的安全模块使用的SpringSe...
很早就听闻ajax的名声,但是却一直不知道怎么用,今天自己捣鼓了一下,竟然会用了,哈哈哈哈。 为了防止...
需要在服务器上进行哈 jquery的ajax方法: // jquery请求 $.ajax({ url: "./server/slider.js...
Ajax函数封装ajax.js // Get / Post // 参数 get post // 是否异步 // 如何处理响应数据 // URL // var...