2

我想在 Rails 中创建自定义链接 - 例如,我让我的用户在创建新引脚时填写此表单:

<%= form_for @pin, html: { multipart: true } do |f| %>
  <% if @pin.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@pin.errors.count, "error") %> prohibited this pin from being saved:</h2>

      <ul>
      <% @pin.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="form-group">
    <%= f.label :image %>
    <%= f.file_field :image, class: "form-control" %>
  </div>


  <div class="form-group">
    <%= f.label :Name_of_your_startup %>
    <%= f.text_field :startupname, class: "form-control" %>
  </div>

  <div class="form-group">
    <%= f.label :City %>
    <%= f.text_field :city, class: "form-control" %>
  </div>

  <div class="form-group">
    <%= f.label :Tag %>
    <%= f.text_field :tag, class: "form-control" %>
  </div>

  <div class="form-group">
    <%= f.label :Reward_for_users %>
    <%= f.text_field :reward, class: "form-control" %>
  </div>

  <div class="form-group">
    <%= f.label :description %>
    <%= f.text_field :description, class: "form-control" %>
  </div>

  <div class="form-group">
    <%= f.submit class: "btn btn-primary" %>
  </div>
<% end %>

在我的 pin 视图中,我想创建自定义 url 来发推文:所以我有这个 url: http: //twitter.com/intent/tweet? text= “这里是自定义部分”

我怎样才能在这个网址的末尾进行整合,例如: <%= f.label :description %>

关于我如何做这样的事情的任何想法?

4

1 回答 1

3

正确的语法应该是

<%= link_to "Link text here", "https://twitter.com/intent/tweet?text=#{@pin.description}" %>
于 2014-07-02T16:59:59.293 回答