Ripple Simulator html页面更改无法与Visual Studio 2015一起使用

时间:2016-02-03 06:45:36

标签: cordova visual-studio-2015 ripple

我使用Visual Studio 2015制作了cordova项目。

我正在使用cordova版本5.4.0构建此应用程序

在应用程序中我分别使用两个html页面page1.html,page2.html

page1.html

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <script src="scripts/jquery.js"></script>
    <script>
        $(document).ready(function () {
            setTimeout(function () {               
                window.location.href = 'page2.html';
            }, 5000);
        });
    </script>
</head>
<body>
    <div>Content goes here.Page 1</div>
</body>
</html>

当名为ripple simulator的页面重定向给出这样的错误时。

image

没有任何想法,问题是什么。 至于观察到纹波模拟器在遇到页面重定向时导致这种情况。

提前致谢。

2 个答案:

答案 0 :(得分:1)

临时修复是安装较旧版本的chrome: http://www.oldversion.com/windows/google-chrome-46-0-2490-80-enterprise-version

这是此处描述的Chrome中的错误,迄今为止尚未修复(2016/02/09):https://code.google.com/p/chromium/issues/detail?id=585260

我的模拟涟漪应用程序100%正常工作,但开始变得相同&#34; aw snap&#34;消息从2016年2月开始出现,我没有更改任何代码。 我刚刚安装了chrome 46,它现在工作正常。

你必须禁用chrome的自动更新,我认为这不是理想的安全性,但是直到有人在某处修复了某些内容,它才能解决这个问题。

答案 1 :(得分:0)

看到这是bug in chrome,或许可以尝试将Visual Studio设置为在其他浏览器中运行模拟? (Firefox或Edge)

没关系,看起来像only chrome is supported