gpt4 book ai didi

javascript - 为什么这个过滤器不输出 IFRAME?

转载 作者:行者123 更新时间:2023-12-03 12:21:13 24 4
gpt4 key购买 nike

我正在尝试自动嵌入 YouTube 视频以显示用户生成的内容。我的过滤器通常会查找链接,然后测试它们以查看它们是否是有效的 YouTube 视频。如果是,则应使用标准 iframe 代码嵌入视频。如果没有,那只是一个链接。但是,过滤器根本不输出 iframe 代码。我假设这可以防止跨站点脚本攻击,但我不知道如何绕过它。

function ytVidId(url) {
var p = /^(?:https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$/;
return (url.match(p)) ? RegExp.$1 : false;
}

myapp.filter('parseUrls', function() {
//with protocol
var urlPattern = /(http|ftp|https):\/\/[\w-]+(\.[\w-]+)+([\w.,@?^=%&:\/~+#-]*[\w@?^=%&\/~+#-])?/gi;
return function(text, target, otherProp) {
if (text == null) {
return "";
}
angular.forEach(text.match(urlPattern), function(url) {
if(ytVidId(url)){
text = text.replace(url, '<div class="video-container"><iframe src="//www.youtube.com/embed/'+ ytVidId(url) +'" frameborder="0" width="560" height="315"></iframe></div>');
}else{
text = text.replace(url, '<a target="' + target + '" href='+ url + '>' + url + '</a>');
}

});
return text;
};
})

使用中:

<span ng-bind-html="p.body | noHTML | newlines | parseUrls:'_blank'"></span>

最佳答案

Angular 要求您通过“sce”(严格上下文转义)提供程序传递 HTML。

Documentation on the SCE provider here

所以它看起来像这样(未经测试,但理论上应该如此)

function ytVidId(url) {
var p = /^(?:https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$/;
return (url.match(p)) ? RegExp.$1 : false;
}

myapp.filter('parseUrls', ['$sce', function() {
//with protocol
var urlPattern = /(http|ftp|https):\/\/[\w-]+(\.[\w-]+)+([\w.,@?^=%&amp;:\/~+#-]*[\w@?^=%&amp;\/~+#-])?/gi;
return function(text, target, otherProp) {
if (text == null) {
return "";
}
angular.forEach(text.match(urlPattern), function(url) {
if(ytVidId(url)){
text = text.replace(url, $sce.trustAs('html', '<div class="video-container"><iframe src="//www.youtube.com/embed/'+ ytVidId(url) +'" frameborder="0" width="560" height="315"></iframe></div>'));
}else{
text = text.replace(url, $sce.trustAs('html', '<a target="' + target + '" href='+ url + '>' + url + '</a>'));
}

});
return text;
};
}])`

关于javascript - 为什么这个过滤器不输出 IFRAME?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24443373/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com