IBM worklight - 从另一个html文件调用worklight适配器

时间:2013-08-17 03:45:17

标签: ibm-mobilefirst

我在主文件旁边创建了另一个文件testW.html,我尝试在该文件中调用worklight适配器,但它不起作用: enter image description here

这是我的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中如何调用它?

1 个答案:

答案 0 :(得分:1)

IBM Worklight应用程序是单页面应用程序,但这并不意味着您无法使用其他文件中的HTML。请查看Building a multi-page application入门模块和相关的sample code

相关问题: