我在Angular2组件中有一个HTML5 <video>
元素。我需要访问它以便在允许用户将其分享到Twitter之前检查持续时间。
有没有办法通过模型绑定或直接访问DOM,我可以在组件的支持类中获取这些信息?
我尝试使用ng-model绑定它,就像在组件的模板中一样:
<video controls width="250" [(ng-model)]="videoElement">
<source [src]="video" type="video/mp4" />
</video>
并在组件的类(TypeScript)中:
videoElement: HTMLVideoElement;
这给了我这个错误:EXCEPTION: No value accessor for '' in [null]
我只能通过向视频元素提供ID并使用document.getElementById("videoElementId")
来访问它,但似乎必须有更好的方法。
答案 0 :(得分:11)
您可以注入ElementRef
,然后访问
element.nativeElement.shadowRoot.querySelector('video').duration;
// with encapsulation: ViewEncapsulation.Native
和其他视图封装模式可能
element.nativeElement.querySelector('video').duration;
(虽然我还没试过)。
这应该也适用
<video (durationchange)="durationChangeEventHandler($event)"></video>
然后使用$event.target
使用指令(Dart代码中的示例)
@Directive(selector: 'video')
class VideoModel {
ElementRef _element;
VideoModel(this._element) {
VideoElement video = _element.nativeElement as VideoElement;
video.onDurationChange.listen((e) => duration = video.duration);
}
num duration;
}
在您的组件中添加
@Component(
selector: 'my-component',
viewProviders: const [VideoModel],
directives: const [VideoModel],
templateUrl: 'my_component.html')
class MyComponent {
@ViewChild(VideoModel)
VideoModel video;
}
现在您可以使用video.duration
答案 1 :(得分:-3)
<html ng-app="VideoLink">
<body ng-controller="linkvideo">
<video controls>
<source src={{video}} type="video.mp4">
</video>
</body>
</html>
控制器文件中的
var videolink=angular.module('VideoLink',[]);
videolink.controller('linkvideo',function($scope){
$scope.video={'name':'https://www.youtube.com/watch?v=R7GLYhJ51uo'}
});
尝试它可能会对你有所帮助