-1

我正在研究歌剧扩展。该扩展程序有一个弹出窗口,将在其中打开一个网站。我在 popup.html 文件中的“xhr.send()”处收到以下错误,我无法将其删除。

“[4/14/2013 12:51:19 PM] JavaScript - 小部件://wuid-9ec76e79-06d9-2749-8b7e-b42743de3375/popup.html 内联脚本线程未捕获的异常:ReferenceError:在第 30 行抛出安全违规错误, widget://wuid-9ec76e79-06d9-2749-8b7e-b42743de3375/popup.html 中 fetchGames() 中的第 16 列:xhr.send(); 从第 32 行调用,第 12 列在 widget://wuid-9ec76e79- 06d9-2749-8b7e-b42743de3375/popup.html: fetchGames(); "

我的配置文件如下:

<?xml version="1.0" encoding="utf-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" id="http://www.example.org/helloworld">
    <name>Hello Extensions!</name>
    <description>A simple hello world example</description>
    <author href="http://www.twitter.com/dstorey/" email="dstorey@opera.com">David Storey, Opera Software</author>
    <icon src="icons/icon-64.png"/>
</widget>

我的 index.html 文件是:

<!DOCTYPE HTML>
<html lang="en">
<head>
    <title>Hello World!</title>
    <meta charset="UTF-8">
    <script>
        window.addEventListener( 'load', function(){
            var theButton;
            var ToolbarUIItemProperties = {
                    disabled: false,
                    title: 'Hello World',
                    icon: 'icons/icon-18.png',
                    popup: {
                        href: 'popup.html',
                        width: 500,
                        height: 500
                    }
                }
            theButton = opera.contexts.toolbar.createItem(ToolbarUIItemProperties);
            opera.contexts.toolbar.addItem(theButton);
        }, false );
    </script>
</head>
<body>

</body>
</html>

我的 popup.html 文件是:

<!DOCTYPE HTML>
<html lang="en">
   <head>
        <title></title>
        <link href="style.css" rel="stylesheet" type="text/css" />
        <style type="text/css">
        body {
    background-color: #efefef;
}
        </style>
        <script>
            function fetchGames() {
            alert('hello');
                var xhr = new XMLHttpRequest();
                xhr.onreadystatechange = function(data) {
                    if (xhr.readyState == 4) {
                        if (xhr.status == 200) {
                            var data = (xhr.responseText);
                            document.getElementById('list_games').innerHTML = data;
                            //callback(data);
                        }
                        else {
                            alert('No Games Found');
                            window.close();
                        }
                    }
                }
                var url = 'http://www.anatomic.us/generate-xml';
                xhr.open('GET', url, true);
                xhr.send();
            };
            fetchGames();
            function submitForm(obj)
            {
                var searchKey = document.getElementById('sp').value;
                if(searchKey!=null && searchKey!='')
                {
                    obj.setAttribute('action', 'http://www.3d-game.co/'+searchKey);
                    return true;
//                    chrome.tabs.create({url: 'http://www.3d-game.co/'+searchKey});
                }
                else
                    {
                        alert('Please Enter your search item');
                         return false;
                    }

            }
        </script>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <body>
<!--        <div class="header">
            <a  href="http://www.3d-game.co/"><img src="icon.png"></a>
        </div>
        <br />-->
        <div id=content>
            <div style='padding-left:10px;'>
                <form id=sf method=post action="http://www.3d-game.co/search/" onSubmit="return submitForm(this);" target="_blank">
                </form>
            </div>
            <div id=cat_content>
                <div id="list_games" class=list_games>
                <img src="loader.gif" border="none" />
                    <div class="ajax-loader">
                        <img src="loader.gif" border="none" />
                    </div>
                </div>
            </div>
    </body>
</html>

请帮我删除它。

4

2 回答 2

2

在要从中获取数据的文件的标题中添加以下内容:

Access-Control-Allow-Origin: *
于 2013-05-24T15:09:42.807 回答
0

在 config.xml 文件中添加这一行:在选项卡之前允许任何域 httprequest,这解决了问题,如果问题仍然存在,请在 Opera 浏览器选项卡中打开“opera:config”并选择“用户首选项”并选中“允许文件 XMLHttpRequest”和重新开始。如果有问题我可以给你我的歌剧扩展工作正常...

于 2013-04-14T08:10:00.827 回答