我怎样才能使我的 fancybox iframe 与它一起显示谷歌?

How can I make work my fancybox iframe with to show google?

提问人:user10863293 提问时间:4/3/2023 更新时间:4/3/2023 访问量:18

问:

我在我的项目中使用 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”。

jquery angularjs 花式盒子

评论

0赞 Janis 4/3/2023
但是你能在 iframe 元素中显示 Google 吗?我相信你做不到,因为it set 'X-Frame-Options' to 'sameorigin'

答: 暂无答案