解决“No 'Access-Control-Allow-Origin' header is present on the requested resource”

前端之家收集整理的这篇文章主要介绍了解决“No 'Access-Control-Allow-Origin' header is present on the requested resource”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. 问题描述

在js中使用ajax请求在网页控制台下打印以下错误信息:

XMLHttpRequest cannot load http://192.168.2.46:8000/account/getjson/. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:63342' is therefore not allowed access.

本人的ajax代码如下

var jsontree = [];
$.ajax({
    url: "http://192.168.2.46:8000/account/getjson/",type: "GET",dataType: 'JSON',success: function(result){
        jsontree = result;
    }
});

2. 解决方法

将上面的dataType: 'JSON'替换为dataType: 'JSONP'即可。

OK, Enjoy it!!!

原文链接:https://www.f2er.com/ajax/163744.html

猜你在找的Ajax相关文章