1

我已经搜索并搜索了这个问题的答案,但我似乎无法找出我做错了什么。我正在构建一个将绑定到 Google 的 API 的 Windows 8 应用程序,我对整个 iframe 概念很感兴趣。我一个又一个例子,似乎没有任何效果。下面是我正在尝试使用的两个页面的片段,以及我得到的错误。任何帮助将不胜感激。提前致谢!

<html>
<head>
<meta charset="utf-8" />
<title>WinWebApp1</title>
<!-- WinJS references -->
<script src="//Microsoft.WinJS.1.0.RC/js/base.js"></script>
<script src="//Microsoft.WinJS.1.0.RC/js/ui.js"></script>
<!-- WinWebApp1 references -->
</head>
<body>
<div>
 <iframe id="Iframe" src="ms-app-web:///page.html"></iframe>
</div>
</body>
</html>

第2页

<!DOCTYPE html>
<html>
<head>
    <title>Test</title>
</head>
<body>
<div>This is a test</div>
</body>
</html>

我得到错误

APPHOST9624: The app can’t use script to load the ms-app-web:///page.html url because the url launches another app. Only direct user interaction can launch another app.
4

1 回答 1

1

我遇到了同样的问题。您想要的绝对是“ms-appx-web”。

<iframe id="Iframe" src="ms-appx-web:///page.html"></iframe>
于 2012-12-15T19:15:49.360 回答