gpt4 book ai didi

ruby-on-rails - 将链接传递回 Rails 中的通知

转载 作者:太空宇宙 更新时间:2023-11-03 17:21:09 24 4
gpt4 key购买 nike

在我的 Rails 应用程序中,我想从 Controller 传回指向通知的链接。

例如

redirect_to permalinks_path, :notice => "Permalinks updated! You will want to update the #{link_to 'Site map', sitemap_path} too!"

但是我得到一个错误:

undefined method `link_to' for #<SettingsController:0x007fda280480f8>

我该如何解决这个问题?

最佳答案

你必须使用 view_context :

redirect_to(
permalinks_path,
:notice => "Permalinks updated! You will want to update the #{view_context.link_to 'Site map', sitemap_path} too!"
)

您可能还想将 .html_safe 添加到字符串中。

关于ruby-on-rails - 将链接传递回 Rails 中的通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40678563/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com