trailblazer

    0熱度

    1回答

    簡要介紹一下我們的結構。我們在Trailblazer框架的服務器端使用Ruby on Rails。在客戶端Ember和Ember引擎。 現在我們遇到了一些模型躺在父親身上的問題,即實際的Ember應用和引擎中的一些模型。現在,引擎中的模型仍然與父應用中的模型有關係。如果我現在想更新這個模型的數據,引擎模型運行得很好,關係(在父親中)他總是進行INSERT和不更新。當然,該條目已經存在,這是錯誤的。

    2熱度

    1回答

    我不斷獲取: Undefined method `model_name` for #<DonationForm:0x007ff62ca75470> 我敢肯定,我失去了一些東西。我遵循安裝說明和一切。可能是什麼原因? 型號: class Donation < ApplicationRecord belongs_to :campaign has_many :anotherth

    0熱度

    1回答

    確認被觸發,並按照我所傳遞的記錄的屬性(即required(:title).filled)按預期工作,但不適用於嵌套模型的屬性(即required(:name).filled的artist)。 class AlbumForm < Reform::Form property :title validation do required(:title).filled

    1熱度

    1回答

    如何在Rails控制檯中使用Trailblazer單元格? 的概念幫手不起作用 irb(main):002:0> c = concept(Resource::Cell, l) NoMethodError: undefined method `concept' for main:Object Did you mean? concern context from (irb

    1熱度

    1回答

    我做自由使用類命名空間中,像這樣: class Person class PrimaryEmailAddress class Update < Trailblazer::Operation def persist(options, **) Shared::Property::HasOne::Update.( {property_class:

    2熱度

    1回答

    所以我一直在Traiblazer和改革文件,我經常看到這樣的代碼 class AlbumForm < Reform::Form collection :songs, populate_if_empty: :populate_songs! do property :name end def populate_songs!(fragment:, **)

    0熱度

    1回答

    一個交易使用neo4jrb/neo4j寶石(8.x的),我知道這是可能的運行單個事務中的多個查詢,像這樣 person = Person.find_by(id: person_id) Neo4j::ActiveBase.run_transaction do |tx| person.update(name: 'New name') person.update(number:

    0熱度

    1回答

    如何使用查詢字符串中的變量預填充Reform表單對象? 我知道如何撥打prepopulate!但我如何從改革合同中訪問URL上的變量? 例如: /example/new?lang=en property :language, virtual: true, prepopulator: ->(*) { ??? }

    2熱度

    1回答

    我目前正在開發的Rails應用(導軌V5.1.1和紅寶石v2.3.4),我試圖讓我的路線之一使用reform表單對象時(/bookings/new錯誤): undefined method `persisted?' for #<Booking:0x007fbae9a98138> 我使用的是virtus model(這在其他環境中正常工作): class Booking include

    0熱度

    1回答

    我想傳遞一個字符串變量,將用作屬性名稱。 舉例來說,如果我有可變property_name,其中包含一個字符串,我想要做這樣的事情: property :property_name, type: String, getter: ->(_) { "sample text" } 和屬性名稱將取決於我的變量中哪些文本改變。 是這樣的可能嗎?如果是這樣,那麼這樣做的語法是什麼? 感謝您的幫助!