link-to

    4熱度

    1回答

    我想弄清楚如何用Rails 4製作應用程序。我一直在基本的東西上停滯不前,而且我似乎無法確定使用未來的原則。 我有一個配置文件模型和一個行業模型。該協會是: 簡介: has_and_belongs_to_many :industries, join_table: 'industries_profiles' 行業: has_and_belongs_to_many :profiles, join_

    1熱度

    7回答

    我希望我的應用程序在點擊鏈接時將圖書添加到current_user。我的代碼似乎沒問題,沒有錯誤,但用戶點擊鏈接後沒有任何反應。 book.rb: has_many :book_users has_many :users, through: :book_users user.rb: has_many :book_users has_many :books, through: :book_u

    0熱度

    1回答

    我們有一個使用navigo庫創建路線的JavaScript前端應用程序。 我想使用navigo符號在電子郵件中創建一個鏈接。問題是,如果我創建link_to的鏈接,只透過路徑NAVIGO,像這樣: link_to 'Some link', '/#/some/custom/path' 會,因爲它應該,只是在鏈接href屬性把/#/some/custom/path。 根據Rails的指南,如果我設

    1熱度

    2回答

    我在一個名爲LearnPython的Rails應用程序上做了一個紅寶石。我有一個link_to,其中1個沒有出現。我會放幾個文件,以便你能幫助我。對不起,如果這是一個非常簡單的錯誤,可以在2秒內解決。 app/views/learn/hub.html.erb <h1>Time to LearnPython!!!</h1> <%= link_to "Lesson 1: Variables", le

    0熱度

    2回答

    我該如何解決這個問題? 我有2個按鈕: /views/subjects/_inscription_button.html.haml - if subject.participation(current_participant).nil? = link_to "Ca m'intéresse !", subject_participant_index_path(:interested_id

    1熱度

    1回答

    我有用戶模型,有很多細節。 在詳細列表(索引)頁面(./details)中有一個link_to備份主表或擁有詳細信息的用戶(./user/1)。 基本上,我想知道是否有辦法使link_to方法的語法,使用ruby或rails約定來查看任何清理器,但我不知道。 <% @details.each do |detail| %> <tr> <td><%= detail.name %><

    -1熱度

    1回答

    錯誤:沒有路由匹配[GET]「/預訂/:ID /%3E:格式」 我想更新的屬性時點擊的「鏈接的link_to」 .. <%= link_to 'Cancel', '/bookings/:id/(.:format)' %> 的routes.rb put '/bookings/:id/(.:format)' => "bookings#tocancel" patch '/bookings/:id/

    -1熱度

    1回答

    我有兩個控制器: MainController with pages: index.html.erb LoginController with pages: login.html.erb, signup.html.erb, pasfor.html.erb 這是我的路線 https://gyazo.com/4acf99c74bbb7999d580e32fd1496386 我創建 <%= l

    -1熱度

    1回答

    我在我的頁面上有一個客戶端列表(只有名字),當我點擊其中的每一個時,我想打開一個名爲'clientdetails'的新頁面,我在其中獲得客戶端的詳細信息(I有地址和年齡); 什麼我到目前爲止是這樣的: {{#each model as |client|}} <p> {{#link-to "clientdetails"}} {{client.name}} {{/link-to}}

    0熱度

    2回答

    我正在用Ruby on Rails編寫一個應用程序,在某些視圖中,我想擺脫由'link_to'助手觸發的自動空白。 <%= link_to liker.first_name.capitalize, user_path(liker) %> <!-- Example of link with a user's firstname (who liked a given content), re