赞
踩
编译运行报错,具体报错如下:
ERROR: Cannot read property 'getTaskService' of undefined
hvigorfile.ts
- // Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently.
- module.exports = require(’@ohos/hvigor-ohos-plugin’).harTasks
可能是由于模块导出方式导致的问题。
1.可以尝试修改hvigorfile.ts中的模块导出方式来解决这个问题
module.exports = require(’@ohos/hvigor-ohos-plugin’).harTasks
需要修改为:
export { harTasks } from ‘@ohos/hvigor-ohos-plugin’
2.上述hvigorfile.ts修改后 ,可点击DevEco Studio上的Build > Clean Project后清除缓存,关闭DevEco Studio后重新打开对应的工程,等待系统自动同步。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。