AngularJS 错误:阻止从 url 加载资源 $sceDelegate 策略不允许
AngularJS errors: Blocked loading resource from url not allowed by $sceDelegate policy
我目前正在学习 AngularJS 中的教程。这是我的 controllers.js 文件中的代码。
'use strict';
angular.module ( 'F1FeederApp.controllers' , [] )
.controller ( 'driversController' , function ( $scope , ergastAPIservice ) {
$scope.nameFilter = null;
$scope.driversList = [];
ergastAPIservice.getDrivers ().success ( function ( response ) {
$scope.driversList = response.MRData.StandingsTable.StandingsLists [ 0 ].DriverStandings;
});
});
我收到以下错误:
1) $sceDelegate 策略不允许从 url 加载资源。
2) TypeError: ergastAPIservice.getDrivers(...).success 不是函数
我不是特别确定是什么导致了这些错误,我是 Angular 的新手。我在我的例子和其他例子之间看到的唯一可能的区别是在这段代码中:( services.js )
'use strict';
angular.module ( 'F1FeederApp.services' , [] )
.factory ( 'ergastAPIservice' , function ( $http ) {
var ergastAPI = {};
ergastAPI.getDrivers = function () {
return $http ({
method : 'JSONP' ,
url : 'http://ergast.com/api/f1/2013/driverStandings.json?callback=JSON_CALLBACK'
});
};
return ergastAPI;
});
我注意到的不同之处在于,在我的 getDrivers 函数末尾有一个分号,并且我在文件顶部也有 use strict
语句。但是,g运行t 拒绝 运行 没有这两行的应用程序,所以我认为这不是问题所在。
如果有人能在这里指出正确的方向,我将不胜感激。
第 1 期:
您尝试从您的应用请求的 url 不安全
根据AngularJSsceDelegatePolicy。要解决它,您需要
使用 resourceUrlWhitelist
方法将应用中的 url 列入白名单
在 $sceDelegateProvider 中,如下所示:
angular.module('myApp', []).config(function($sceDelegateProvider) {
$sceDelegateProvider.resourceUrlWhitelist([
// Allow same origin resource loads.
'self',
// Allow loading from our assets domain. **.
'http://ergast.com/**'
]);
为了清楚说明,上面的例子来自here
问题 #2:
错误 TypeError: ergastAPIservice.getDrivers(...).success is not a function
的问题可能是由于您使用的 AngularJS 版本。遗留的 .success/.error
方法在最新的 AngularJs 版本 1.6 中已弃用。这是 Deprecation notice 如果您使用的是最新的 AngularJs,可能是这个原因,否则,我们需要更多信息来调试问题。
您可以使用以下
$scope.trustSrc = function(src) {
return $sce.trustAsResourceUrl(src);
}
and your html should have {{trustSrc(myUrl)}} instead of {{myUrl}}
我目前正在学习 AngularJS 中的教程。这是我的 controllers.js 文件中的代码。
'use strict';
angular.module ( 'F1FeederApp.controllers' , [] )
.controller ( 'driversController' , function ( $scope , ergastAPIservice ) {
$scope.nameFilter = null;
$scope.driversList = [];
ergastAPIservice.getDrivers ().success ( function ( response ) {
$scope.driversList = response.MRData.StandingsTable.StandingsLists [ 0 ].DriverStandings;
});
});
我收到以下错误:
1) $sceDelegate 策略不允许从 url 加载资源。
2) TypeError: ergastAPIservice.getDrivers(...).success 不是函数
我不是特别确定是什么导致了这些错误,我是 Angular 的新手。我在我的例子和其他例子之间看到的唯一可能的区别是在这段代码中:( services.js )
'use strict';
angular.module ( 'F1FeederApp.services' , [] )
.factory ( 'ergastAPIservice' , function ( $http ) {
var ergastAPI = {};
ergastAPI.getDrivers = function () {
return $http ({
method : 'JSONP' ,
url : 'http://ergast.com/api/f1/2013/driverStandings.json?callback=JSON_CALLBACK'
});
};
return ergastAPI;
});
我注意到的不同之处在于,在我的 getDrivers 函数末尾有一个分号,并且我在文件顶部也有 use strict
语句。但是,g运行t 拒绝 运行 没有这两行的应用程序,所以我认为这不是问题所在。
如果有人能在这里指出正确的方向,我将不胜感激。
第 1 期:
您尝试从您的应用请求的 url 不安全
根据AngularJSsceDelegatePolicy。要解决它,您需要
使用 resourceUrlWhitelist
方法将应用中的 url 列入白名单
在 $sceDelegateProvider 中,如下所示:
angular.module('myApp', []).config(function($sceDelegateProvider) {
$sceDelegateProvider.resourceUrlWhitelist([
// Allow same origin resource loads.
'self',
// Allow loading from our assets domain. **.
'http://ergast.com/**'
]);
为了清楚说明,上面的例子来自here
问题 #2:
错误 TypeError: ergastAPIservice.getDrivers(...).success is not a function
的问题可能是由于您使用的 AngularJS 版本。遗留的 .success/.error
方法在最新的 AngularJs 版本 1.6 中已弃用。这是 Deprecation notice 如果您使用的是最新的 AngularJs,可能是这个原因,否则,我们需要更多信息来调试问题。
您可以使用以下
$scope.trustSrc = function(src) {
return $sce.trustAsResourceUrl(src);
}
and your html should have {{trustSrc(myUrl)}} instead of {{myUrl}}