当我使用 Run->Visual Studio Project 从 Worklight 6.0 启动 Windows 8 应用程序时,该应用程序使用 169.254(linnl 本地块)IP 地址在 VS 内启动,无论我使用 Build for Remote Server 使用了正确的 IP。在 Eclipse 中查看生成的 html 文件,它看起来是正确的,但是当我启动它时,由于某种原因,它在 Visual Studio 中得到了错误的 IP 地址。
这是带有错误IP地址的代码片段
<script>
// Define WL namespace.
var WL = WL ? WL : {};
/**
* WLClient configuration variables.
* Values are injected by the deployer that packs the gadget.
*/
WL.StaticAppProps = {
"APP_DISPLAY_NAME": "My App",
"APP_ID": "cnu",
"APP_SERVICES_URL": "http:\/\/169.254.80.80:9080\/cnu\/apps\/services\/",
"APP_VERSION": "1.0",
"ENVIRONMENT": "windowsphone8",
"LOGIN_DISPLAY_TYPE": "embedded",
"WORKLIGHT_PLATFORM_VERSION": "6.0.0",
"WORKLIGHT_ROOT_URL": "http:\/\/169.254.80.80:9080\/myapp\/apps\/services\/api\/cnu\/windowsphone8\/"
};</script>
难道我做错了什么 ?