0

我在主文件旁边创建了另一个文件 testW.html,我尝试在该文件中调用 worklight 适配器,但它不起作用: 在此处输入图像描述

这是我的testW.html:

<html>
<head>
<script>window.$ = window.jQuery = WLJQ;</script>
    <script type="text/javascript" data-dojo-config="isDebug: false, async: true, parseOnLoad: true, mblHideAddressBar: false" src="dojo/dojo.js"></script>

</head>
<body onload="WL.Client.init({})">
<h1>Hello</h1>
<button type="button" onclick="LoginWS();">Click Me!</button>

<script src="js/PushAppRealmChallengeHandler.js"></script>
    <script src="js/initOptions.js"></script>
    <script src="js/test2.js"></script>
    <script src="js/configFb.js"></script>
    <script src="js/messages.js"></script>
</body>
</html>

在这里,LoginWS() 是 test2.js 中的函数调用工作灯适配器,我尝试在 test2.html 中调用它,一切正常,我如何在 testW.html 中调用它?

4

1 回答 1

1

IBM Worklight 应用程序是单页应用程序,但这并不意味着您不能使用来自其他文件的 HTML。查看构建多页应用程序入门模块和相关的示例代码

相关问题:

于 2013-08-17T04:27:52.597 回答