提问人:user10863293 提问时间:4/3/2023 更新时间:4/3/2023 访问量:18
我怎样才能使我的 fancybox iframe 与它一起显示谷歌?
How can I make work my fancybox iframe with to show google?
问:
我在我的项目中使用 fancybox,但是当我想显示为 iframe google.com 即使使用 ?enablejsapi=1 它也不起作用
这是我的代码
tabs.directive('fancybox', function ($compile, $http) {
return {
restrict: 'A',
controller: function ($scope) {
$scope.openFancyboxIframe = function (url) {
jQuery.fancybox.showLoading()
jQuery.fancybox.helpers.overlay.open({ parent: jQuery('body'), closeClick: false })
jQuery.fancybox.open({ href: 'https://www.google.com?enablejsapi=1', type: 'iframe', width: 640, height : 480});
};
}
};
});
我有这个错误消息
拒绝在帧中显示“https://www.google.com/”,因为它将“X-Frame-Options”设置为“sameorigin”。
答: 暂无答案
评论
it set 'X-Frame-Options' to 'sameorigin'