您的位置:首页技术文章
文章详情页

angular.js - angularjs的ng-include的html必须是要在同一个服务器吗?

【字号: 日期:2024-03-13 16:15:16浏览:105作者:猪猪

问题描述

想实现其他服务器的播放器到当前页面中,求问应该怎么实现?

问题解答

回答1:

使用ng-include引入的文件必须是同一个域名下,所以想要实现的可能需要另辟蹊径了

回答2:

默认是同源策略,如果你想加载其他不在同一个域的资源,你需要了解 $sce,设置白名单这是官网一段描述

By default, the template URL is restricted to the same domain and protocol as the application document. This is done by calling $sce.getTrustedResourceUrl on it. To load templates from other domains or protocols you may either whitelist them or wrap them as trusted values. Refer to Angular’s Strict Contextual Escaping.

标签: HTML
相关文章: