|
楼主 |
发表于 2024-8-9 14:53:56
|
显示全部楼层
问题描述:QABS
报错this.removeWaitListener is not a function
报错this.wait is not a function
解决方法:vscode或记事本打开QABS.js
找到this.removeWaitListener(this._endWait);改成QPlus.removeWaitListener(this._endWait);
找到this._endWait = this.wait(90).then(function() {改成this._endWait = QPlus.wait(90).then(function() {
|
|