H5 JS与UI交互
说明
- 本章节主要讲述JS与UI元素进行交互
如何使用
- 在工程的layout文件夹下新建一个ui.js和index.html文件,内容为
function main() {
ui.layout("index", "index.html");
}
main();
- 以上的操作即可完成一个简单的展示 index.html 的操作
H5调用ec的函数
- 新建一个iOS脱机版工程,默认的例子都在里面
EC H5预定义函数
自动化服务是否正常 isServiceOk
// H5中调用,不是脚本
// 异步回调
window.ec.isServiceOk(function (resp) {
// resp = true 代表自动化服务正常
});
启动脚本 start
// H5中调用,不是脚本
// 异步回调
window.ec.start(function (resp) {
// resp = true 代表正常
});
停止脚本 stopTask
// H5中调用,不是脚本
// 异步回调
window.ec.stopTask(function (resp) {
// resp = true 代表正常
});
脚本是否运行 isScriptRunning
// H5中调用,不是脚本
// 异步回调
window.ec.isScriptRunning(function (resp) {
// resp = true 代表正常
});
获取UI配置 getConfig
// H5中调用,不是脚本
// 异步回调
window.ec.getConfig("key", function (resp) {
console.log(resp)
});
移出UI配置 removeConfig
// H5中调用,不是脚本
// 异步回调
window.ec.removeConfig("key", function (resp) {
console.log(resp)
});
保存UI配置 saveConfig
// H5中调用,不是脚本
// 异步回调
window.ec.saveConfig("key", "data", function (resp) {
console.log(resp)
});
获取所有UI配置 getAllConfig
// H5中调用,不是脚本
// 异步回调
window.ec.getAllConfig(function (resp) {
console.log(resp)
});
暂停和继续
暂停继续 setScriptPause
function pause() {
// setScriptPause
// {"pause":true,"timeout":3330} 参数,pause:true代表暂停,false代表继续,
// timeout: pause=true的时候,单位是毫秒,大于0代表多长时间自动恢复执行,等于0代表等待用户继续
window.ec.setScriptPause({"pause": true, "timeout": 3330}, function (resp) {
checkPause()
});
}
function checkPause() {
window.ec.isScriptPause(function (resp) {
alert("isScriptPause " + resp)
});
}