ruby-on-rails – 在onclick javascript中Rails link_to ruby​​变量

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 在onclick javascript中Rails link_to ruby​​变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这句话有什么不对
显示语法错误
<%= link_to image_tag('cancel.png'),{:action => 'remove',:id => question.id},:title=>'Delete',:class=>'action',:onclick=>"removeQuestion("+ question.id +");return false;"%>

<%= link_to image_tag('cancel.png'),:onclick=>"removeQuestion();return false;"%>

正确生成以下代码

<a title="Delete" onclick="removeQuestion();return false" class="action remove" href="/quizzes/remove/1"><img src="/images/cancel.png?1290165811" alt="Cancel"></a>

解决方法

你写的是什么
<%= link_to image_tag('cancel.png'),:onclick=>"removeQuestion("+ question.id +");return false;"%>

这是炸弹,因为question.id是一个Fixnum.您将无法将Fixnum转换为String TypeError.

如何解决这个问题

<%= link_to image_tag('cancel.png'),:onclick=>"removeQuestion("+ question.id.to_s +");return false;"%>

要么

<%= link_to image_tag('cancel.png'),:onclick=>"removeQuestion('#{question.id}');return false;"%>

这会将问题ID作为字符串发送到您的removeQuestion javascript函数.

要么

<%= link_to image_tag('cancel.png'),:onclick=>"removeQuestion(#{question.id});return false;"%>

这会将问题ID作为整数发送到您的removeQuestion javascript函数.

原文链接:https://www.f2er.com/ruby/265505.html

猜你在找的Ruby相关文章