使用平台的门户或者自用使用shellImpl定义的门户,简单的打开和关闭功能可以调用API简单的传参如下:
打开功能justep.Shell.showPage(JSON url, JSON data, JSON options)
Parameters JSON url url 类似 {url:"$UI/portal/index.w"} 或者 "$UI/portal/index.w" JSON data 传递到页面的参数 JSON options 可选参数 类似{owner:modelObject}
关闭当前功能justep.Shell.closePage()
在打开功能的同时要关闭当前功能,可以使用justep.Shell.closePage通过参数控制
如下:
justep.Shell.closePage(undefined,false,require.toUrl("$UI/portal/sample/main/main.w"));
其中require.toUrl(“$UI/portal/sample/main/main.w”)就是要打开功能的url
评一波