基本示例
公共方法
假如我们的公共方法的路径在js/common_methods.js
1 | function objToKeyValueString(obj) { |
添加到qrc中
1 | <RCC> |
QML中使用
添加引用
1 | import "js/common_methods.js" as CommonMethods |
调用
1 | Component.onCompleted: { |
延迟执行
这点和JS语法不一样
1 | function delayExecute(delayTime, parent, callback) { |
QML中使用
1 | import "js/common_methods.js" as CommonMethods |