4-6 AngularJS1.6 跨域

AngularJS1.6 跨域

配置跨域白名单,要配置请求域名下所有内容

//配置跨域白名单
    app.config(['$sceDelegateProvider', function ($sceDelegateProvider) {
        $sceDelegateProvider.resourceUrlWhitelist([
            'self',
            // ** 代表可以访问这个域名下的所有内容
            'http://datainfo.duapp.com/**'
        ]);
    }]);

否则会发生错误:





你可能感兴趣的:(4-6 AngularJS1.6 跨域)