找不到文件“best_in_place.purr”
Posted
技术标签:
【中文标题】找不到文件“best_in_place.purr”【英文标题】:couldn't find file 'best_in_place.purr' 【发布时间】:2012-09-30 11:51:03 【问题描述】:我正在使用best_in_place gem,根据说明,为了使用 jquery.purr 实现优雅的错误处理,我所要做的就是将其添加到我的application.js
:
//= require best_in_place.purr
我这样做了,但我一直收到此错误(在多次重新启动服务器后):
couldn't find file 'best_in_place.purr'
(in myapp/app/assets/javascripts/application.js:19)
这就是我的application.js
的样子:
//= require jquery
//= require jquery.ui.all
//= require jquery_ujs
//= require twitter/bootstrap
//= require turbolinks
//= require best_in_place
//= require best_in_place.purr
//= require_tree .
想法?
对于它的价值,我在尝试添加 .purr
之前有 best_in_place 工作。所以我什至将它从我的 Gemfile 中删除,运行 bundle
然后放回去并重新运行 bundle
- 但仍然没有骰子。
【问题讨论】:
抱歉,我没用过 best_in_place 或“purr”——不知道 purr 是什么。 @Zabba code.google.com/p/jquery-purr 【参考方案1】:harleyttd 已在Github repo 上回复。
他说:
我认为这是因为您使用 gem 发布版本(通过 gem 'best_in_place'),其中不包括 best_in_place.purr。试试宝石 'best_in_place', github: 'bernat/best_in_place' 代替。
另一种方法是将 best_in_place.purr 从 repo 复制到 best_in_place.custom 在您的应用程序中并根据您自己的需要对其进行自定义。 如果事情没有显示为,它将允许您轻松调试 也期待
这实际上对我有用。
【讨论】:
以上是关于找不到文件“best_in_place.purr”的主要内容,如果未能解决你的问题,请参考以下文章