找不到模块:错误:无法解析'nativescript-sound'

时间:2018-05-24 07:00:48

标签: android nativescript

我正在尝试在我的nativescript / vue-cli app中使用nativescript-sound包。我使用

安装nativescript-sound
  

npm install --save nativescript-sound

安装完毕后我运行npm clean,然后尝试在项目的main.js文件中调用nativescript-sound

require("nativescript-vue").registerElement("sound", () => require("nativescript-sound").sound);

当我尝试运行时

  

npm run watch:android

编译器显示错误。

错误

 ERROR in ./src/main.js
 Module not found: Error: Can't resolve 'nativescript-sound' in 
 '/home/darahat/Desktop/Rhymes/src'
 @ ./src/main.js 
  1. 我的问题是显示错误的原因?
  2. nativescript-sound是否支持nativescript / vue cli?
  3. 如果不支持我可以使用哪个插件添加背景声音和 点击按钮声音?

1 个答案:

答案 0 :(得分:0)

我换了 node_modules / nativescript-sound / package.json

"main": "sound.js",

"main": "sound",

并且有效!

let Sound = require("nativescript-sound");