我是 Ruby on Rails 的新手,我试图使用Noty实现通知但失败了。
安装程序:
停止本地主机服务器
$ yarn add noty
# app/javascript/packs/application.js
...
window.Noty = require("noty")
下面我无法导入noty
#app/assets/stylesheets/application.scss
...
@import "noty/lib/noty.js"; # not working
@import "noty/lib/noty"; # not working either
我可以确认 package.json 和 yarn.lock 中说明了该库
我也看到了这个可能的解决方案,并且在我的 assets.rb 中,node_modules 已经被引用了......
Rails.application.config.assets.paths << Rails.root.join('node_modules')
...并且文件 noty.css 和 noty.js 已经存在于 node_modeles/noty/lib