Windows 8 Metro App Iframe

时间:2012-07-13 23:47:12

标签: iframe windows-8 google-api microsoft-metro

我搜索并搜索了这个答案,但我似乎无法找出我做错了什么。我正在构建一个将与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.

1 个答案:

答案 0 :(得分:1)

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

<iframe id="Iframe" src="ms-appx-web:///page.html"></iframe>