You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 6, 2019. It is now read-only.
新版中文网站及文档已经上线,请访问 https://weex-project.io/cn/ , 此处后续不再维护,谢谢理解。
接口
原文
你可以在组件的方法中通过
this
(Vm)上下文访问这些 API。例子:
$(id)
不建议使用,请使用
$vm
代替。$el(id)
返回对应 id 的元素对象的引用。
Arguments
id
(string): 唯一标识符。Returns
Tips
$vm(id)
返回对应 id 的 vm 对象引用。
Arguments
id
(String): 唯一标识符。Returns
vm
(Vm): 一个 Vm 对象引用。Tips
$getConfig()
获取当前全局环境变量和配置信息。
Returns
config
(object): 配置对象;bundleUrl
(string): bundle 的 url;debug
(boolean): 是否是调试模式;env
(object): 环境对象;weexVersion
(string): Weex sdk 版本;appName
(string): 应用名字;appVersion
(string): 应用版本;platform
(string): 平台信息,是iOS
、Android
还是Web
;osVersion
(string): 系统版本;deviceModel
(string): 设备型号 (仅原生应用);deviceWidth
(number): 设备宽度,默认为750
;deviceHeight
(number): 设备高度。$call(module, method, ...args)
不建议使用,请使用
require('@weex-module/module')[method](...args)
代替。查看更多信息:modules。The text was updated successfully, but these errors were encountered: