我发现了AngularJS指令,我遇到了将对象的属性绑定到模板的问题。
我有一个不同内容类型的项目列表(jpg,mp4),我试图通过在img标签和关于内容类型的视频标签之间切换来自定义DOM。
我有一个控制器,它使用工厂作为从上一个视图中获取所选对象的依赖项:
app.controller('EventDetailCtrl', function($scope, Events) {
$scope.event = Events.getCurrentEvent();
}
然后,我有我的指示:
angular.module('starter.directives', [])
.directive('myEventDirective', ['$compile', 'API_ENDPOINT', function($compile, API_ENDPOINT){
var imgTemplate = '<img ng-src="' + API_ENDPOINT.url + '/events/image/{{event._id}}" />';
var videoTemplate = '<video controls="controls" preload="metadata" webkit-playsinline="webkit-playsinline" class="videoPlayer">' +
'<source src="' + API_ENDPOINT.url + '/events/video/{{event._id}}" type="video/mp4"/> </video>';
var getTemplate = function(contentType){
var template = '';
if(contentType == 'mp4'){
template = videoTemplate;
} else {
template = imgTemplate;
}
return template;
};
return {
restrict: 'E',
replace: true,
link: function(scope, element, attrs){
console.log(scope.event);
element.html(getTemplate(scope.event.contentType));
compile(element.contents())(scope);
}
}
}]);
在我的console.log(scope.event)上,浏览器正在打印具有所有属性的对象(_id,contentType,filename等)。
我的HTML视图,我想更新有关内容类型的标记:
<ion-view view-title="{{event.name}}">
<ion-content class="padding">
<my-event-directive data-source="event"></my-event-directive>
<ion-item>
Information about event do write
</ion-item>
<ion-view />
但我收到错误消息:
错误:[$ interpolate:noconcat]插值时出错:http://192.168.1.11:8100/api/events/video/ {{event._id}} 严格上下文转义不允许在需要可信值时连接多个表达式的插值。
我已经尝试将属性范围添加到指令的返回对象,但后来我有一个未定义的对象......
感谢您的帮助!
编辑:
我在互联网上发现问题来自视频网址(这是对XSS攻击的保护),但我不知道如何自定义DOM的这一部分并避免任何安全性缺失..
答案 0 :(得分:1)
您可以使用$ sce服务返回受信任的资源。
在src中提供范围内的函数,该函数将返回受信任的资源URL。
$scope.getResourceURL() {
return $sce.trustAs($sce.RESOURCE_URL, yourURLhere);
}