Rails 3 使用 haml 和不显眼的 javascript 将参数传递到部分
如何使用 haml 和不显眼的 javascript
comments/create.js.haml
$("#comment_list").html("#{escape_javascript( render(:partial => "shared/comments", :locals => { :commentable => @album }) ).html_safe}");
崩溃,
将参数传递到部分中,但在 albums/show.html.haml 中
#comment_list= render :partial => 'shared/comments', :locals => { :commentable => @album }
但没有错误
How to pass params into partial with haml and unobtrusive javascript
comments/create.js.haml
$("#comment_list").html("#{escape_javascript( render(:partial => "shared/comments", :locals => { :commentable => @album }) ).html_safe}");
crashed
but in albums/show.html.haml
#comment_list= render :partial => 'shared/comments', :locals => { :commentable => @album }
working without bugs
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我更改
为
并安装 Haml v3.1.2
I'm change
to
and install Haml v3.1.2