我在我的Rails 3.1应用程序中使用
Coffeescript template,所以在我的app / assets / javascripts / post.js.coffee文件中,我有类似的东西:
$('#post').html JST['templates/posts/show'] post: post
其中post是JSON对象.模板位于app / assets / javascripts / templates / posts / show中
现在我也使用jquery_ujs来响应PostsController #create,并希望使用app / views / posts / show.js.erb来呈现响应.在show.js.erb中,我想使用上面的模板.我该怎么做呢?谢谢.
最佳答案 好像
https://github.com/markbates/coffeebeans可能就是你想要的.