如何从另一个辅助方法内部调用 Rails 辅助方法?
我正在编写一个助手,需要调用另一个助手来生成 html。我该怎么做?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在编写一个助手,需要调用另一个助手来生成 html。我该怎么做?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
尝试:
包括另一个助手
try:
include AnotherHelper
只要调用它即可。
如果它位于不同的帮助程序文件中,则控制器可以使用控制器方法“helper"
添加:
这是一个示例:
** 如果这没有帮助,请在您的问题中添加更多详细信息......
Just call it.
If it is in a different helper file, your controller can include the other helpfile by using the controller method "helper"
Added:
Here is an example:
** Please add more details to your question if this isn't helping....
像这样的东西应该对您有帮助(例如,在 application_helper.rb 中)
在这种情况下,create_div 方法正在使用字符串作为参数调用 html 方法。 html 方法返回一个 HTML 字符串,其中嵌入了您提供的参数。从某种角度来看,它看起来像:
希望这有帮助!
Something like this should help you (say, in application_helper.rb)
In this case, the create_div method is calling the html method with a string as an argument. the html method returns a string of HTML with the argument you supply embedded. in a view, it would look like:
hope this helps!