gpt4 book ai didi

ruby-on-rails - Rails - 在 link_to 'Delete' 中用图像替换文本

转载 作者:行者123 更新时间:2023-12-04 06:19:12 25 4
gpt4 key购买 nike

我试图改变的基本代码片段是:

<%= link_to 'Delete', post, method: :delete, data: { confirm: 'Are you sure?' } %>

我的问题是:是否可以替换文本“删除”以显示与原始代码执行相同操作的图像?即用“X”的图像替换“删除”

我试过:

<%= link_to 'img src="path_to_image"', post, method: :delete, data: { confirm: 'Are you sure?' } %>

我并不是真的期望上面的代码能工作,但我想我会试一试。正如预期的那样,它返回了“a href="path_to_image""来代替“删除”

还以为我应该添加

rails -v
Rails 4.1.0

最佳答案

您可以使用 image_tag 来做到这一点助手:

<%= link_to post, method: :delete, data: {confirm: 'Are you sure?'} do %>
<%= image_tag(your_image_url) %>
<% end %>

或者,如果您想在一行中完成:

<%= link_to image_tag(your_image_url), post, method: :delete, {confirm: 'Are you sure?'} %>

关于你的路径问题,因为你的图像文件似乎放在正确的 Assets 目录中,这应该有效:

<%= link_to post, method: :delete, data: {confirm: 'Are you sure?'} do %>
<%= image_tag('x_small_icon') %>
<% end %>

关于ruby-on-rails - Rails - 在 link_to 'Delete' 中用图像替换文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23512807/

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