formメソッドでstring型としてURLをデータに保存しましたのですが、それをindexにてリンクの状態で表示させたいです。下記のようにしたのですが、出力された文字を押してもリンクに飛んでくれません。
rb
1<% @posts.each do |post| %> 2 <tr> 3 <th scope="row"><%= link_to post.title, post %></th> 4 <td><%= post.body.truncate(30) %></td> 5 <td><%= post.status %></td> 6 <td><%= post.reason %></td> 7 <td><%= post.posted_at.strftime("%Y-%m-%d") %></td> 8 <td><%= post.rank %></td> 9 <td><%= post.summary %></td> 10 <td><%= link_to post.url %></td> 11<% end %>
<div class="form-group"> <%= form.label :URL %> <%= form.text_field :url, class:"form-control" %> </div>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/25 06:16
退会済みユーザー
2019/12/25 06:19
2019/12/25 06:20
2019/12/25 06:23
退会済みユーザー
2019/12/25 06:27
2019/12/25 06:29