0

我目前正在使用 WindowsRT/Metro 框架开发 C#/xaml 应用程序

Windows 应用商店应用程序中是否有任何方法可以从字符串加载和运行 javascript?我希望以类似的方式使用 Javascript,游戏引擎会调用 LUA/Python 脚本来执行动态功能,而无需重新编译引擎。似乎 IOS 可以使用 JavascriptCore 实现这一点

我们目前在其他平台上使用 javascript 在工作流的各个阶段执行一些简单的逻辑(例如,用户在表单或向导中配置的行为,例如根据已输入的数据填充字段)。理想情况下,在工作流程的某些点上,我希望能够调用一个 javascript 函数,该函数可以访问应用程序中已经定义的简单 API。

这目前可以在 Windows 应用商店应用程序上实现吗?

该应用程序不会部署在普通的 Windows 应用商店中,而是仅用于企业类型的部署

4

2 回答 2

1

load the html from the local file using webview.navigatetostring then you can inject the javascript and from with in the app you can use invoke script to call a function

go through the link below Invoke script

but i really would like to know how you would like to distribute the app for enterprise purpose. I dont think that might be possible. Please explain.

于 2013-09-05T18:49:40.137 回答
0

Windows 8 限制使用动态代码(注入动态 HTML)。您可以查看此链接 Run JavaScript from a string :您可以使用 eval() 函数

于 2013-09-04T13:59:22.693 回答