qml导入js添加别名
Posted lodger47
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qml导入js添加别名相关的知识,希望对你有一定的参考价值。
import QtQuick 2.9 // 导入模块
import QtQuick.Window 2.2
import QtQuick.Controls 2.2
import "./Jiejs.js" as Jie // 导入jswenjian1
Window {
visible: true
width: 640
height: 480
title: qsTr("Hello World")
Button {
text: qsTr("我是一个按钮")
// 槽函数
onClicked: {
let obj = new Jie.OperrterNumber(100)
console.log("add",oper.add(79))
console.log("sub",oper.sub(20))
}
}
}
Jiejs.js
/*
这是一个js文件,只能支持es5
*/
function OperrterNumber(num){
this.num = num
this.add = function(val){
return num+val
}
this.sub = function(val){
return num-val
}
}
以上是关于qml导入js添加别名的主要内容,如果未能解决你的问题,请参考以下文章
26.Qt Quick QML-RotationAnimationPathAnimationSmoothedAnimationBehaviorPauseAnimationSequential(代码片段