params

    0熱度

    3回答

    我想從url中提取參數。我有以下路徑模式: pattern = "/foo/:foo_id/bar/:bar_id" 而且例如網址: url = "/foo/1/bar/2" 我想獲得{foo_id:1,bar_id:2}。我試着模式轉換爲這樣的事情: "\/foo\/(?<foo_id>.*)\/bar\/(?<bar_id>.*)" 我失敗的第一步時,我想在網址替換反斜線: for

    0熱度

    2回答

    我正在設法將我的Song實例的「album_id」屬性設置爲當前正在查看的相冊的ID。 例如: http://localhost:3000/artist_profiles/1/albums/2 在上面的網址,我想設置我創建相等的歌曲 「album_id」 爲2 我songs_controller: class Albums::SongsController < ApplicationControl

    1熱度

    1回答

    當註冊表單的submittion測試總是收到錯誤 故障/錯誤:@user = User.new(PARAMS [:用戶]) ::加載ActiveModel ForbiddenAttrubutesError: Error Image users_controller.rb class UsersController < ApplicationController def show

    2熱度

    1回答

    我已經看到了這個在基本代碼: .state('product', { url: productPageUrl + '/:slug', params: { productId: null, color: null, size: null, product: null }, ... }, ... 是什麼意思

    0熱度

    2回答

    所以我通過一系列電影角色循環播放,每個角色都有一個複選框。我希望這樣,當我點擊「Select My Cast」按鈕時,我將重定向到我的控制器中的teams_path(index方法),以便能夠獲得我在params hash中的數組中選擇的字符的ID 。 下面的代碼: 我放在binding.pry在我的索引方法在我的控制器,而params沒有char_ids陣列或任何相關信息。謝謝您的幫助;我意識到

    0熱度

    1回答

    我從一個月開始學習rails。我正在建立一個網站,學習越來越多。但自1周以來我被封鎖了...我嘗試了很多東西,在谷歌上搜索。但是,沒有什麼工作:( 所以我有4個數據庫: 1)露營(桿狀) 2)區(類別) 3)DEPARTEMENT(州) 3)威樂(市) 我想顯示特定區域或/和Departement或/和ville的Camping(post)。我的參數可以是ID或:slug。 因此,當用戶繼續exe

    0熱度

    1回答

    是否可以從外部組件獲取當前路線? 基本上,我有一個只能顯示當前頁面標題的頁面標題組件。似乎無法弄清楚如何從外部組件訪問路由? 編輯: App.jsx <div style={styles.container}> <Sidebar style={styles.sidebar} links={sidebarLinks}/> <div style={styles.wrapper}> <Header st

    0熱度

    2回答

    嘗試從URL獲取ID參數,但是好像我沒有定義我的參數var。無法看到我出錯的地方,所以也許有人可以幫忙! 代碼 import {Component} from 'angular2/core'; import {ROUTER_DIRECTIVES, RouteParams, RouteConfig} from 'angular2/router'; import {OnInit} from 'an

    0熱度

    1回答

    命名PARAMS我有一個加載字體作爲這樣一個網址: /templatename/fonts/helvetica?weights=regular,bold,light 在PHP將動態生成相應的字體引用CSS文件。 我們剛剛搬到Phalcon,它壞了。我試圖找出如何告訴路由器使用字體名稱作爲命名參數,但也使用標準參數樣式。與問號。 這是我的路由器看起來像現在: ... "fonts"=>[

    0熱度

    1回答

    $string = '/start [email protected]'; $pattern = '/{command} {name}@{domain}'; GET數組參數,可以像下面的例子: ['command' => 'start', 'name' => 'info', 'domain' => 'example.com'] 和 $string = '/start [email pro