AngularJS 指令 - 插值时出错

AngularJS Directive - Error while interpolating

我发现了 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、文件名等)。

还有我的 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}} 严格的上下文转义不允许在需要可信值时连接多个表达式的插值。

我已经尝试将属性范围添加到指令的 return 对象,但是我有一个未定义的对象...

感谢您的帮助!

编辑:

我在互联网上发现问题出在视频网址上​​(这是一种针对 XSS 攻击的保护措施),但我不知道如何自定义 DOM 的这一部分并避免任何安全漏洞。 .

您可以将 $sce 服务用于 return 受信任的资源。

在 src 中提供一个来自您范围的函数,该函数将 return 一个受信任的资源 URL。

$scope.getResourceURL() {
    return $sce.trustAs($sce.RESOURCE_URL, yourURLhere);
}

文档:https://docs.angularjs.org/api/ng/service/$sce