但是,它不会取代 @served_object.title和 @served_object.file与文本一起,但只是-6ren">
gpt4 book ai didi

ruby-on-rails - rails : link_to not rendering dynamic text

转载 作者:行者123 更新时间:2023-12-04 13:49:50 26 4
gpt4 key购买 nike

在我的 Rails 4 erb View 中,我有这个链接,

<%= link_to "Download @served_file.title", "/public/uploads/@served_file.file", :class => "btn" %>

但是,它不会取代 @served_object.title@served_object.file与文本一起,但只是将这些行放在 <%= %> 中按预期工作。

最佳答案

您需要将值插入到字符串中。

<%= link_to "Download #{@served_file.title}", "/uploads/#{@served_file.file}", :class => "btn" %>

关于ruby-on-rails - rails : link_to not rendering dynamic text,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21964250/

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