MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Uzyskaj dostęp do podkolekcji w formie mongoid z szynami, aby edytować i tworzyć nowy wpis

Spróbuj użyć pomocnika formularza „fields_for” dla osadzonego modelu, jak w poniższym przykładzie roboczym.Mam nadzieję, że to pomoże.

Przebrnięcie przez literówki i niespójności zajęło trochę czasu, więc jeśli chcesz w przyszłości uzyskać szybszą odpowiedź, postaraj się, aby Twoje pytanie było jak najbardziej dokładne i jak najmniejsze.

class Californium
  include Mongoid::Document
  field :name
  field :license_type
  embeds_one :address
end

class Address
  include Mongoid::Document
  field :street
  field :city
  field :state
  field :zip
  embedded_in :california, :inverse_of => :address
end

app/views/edit.html.erb

<%= form_for :californium do |f| %>

    <div class="field">
      <%= f.label :name %>
      <br/>
      <%= f.text_field :name %>
    </div>
    <div class="field">
      <%= f.label :license_type %>
      <br/>
      <%= f.text_field :license_type %>
    </div>

    <%= fields_for @californium.address do |af| %>
        <div class="field">
          <%= af.label :street %>
          <br/>
          <%= af.text_field :street %>
        </div>

        <div class="field">
          <%= af.label :city %>
          <br/>
          <%= af.text_field :city %>
        </div>
    <% end %>

    <div class="actions">
      <%= f.submit %>
    </div>

<% end %>

config/routes.rb

  match 'california/:id' => 'california#edit', via: :get
  match 'california/:id' => 'california#update', via: :post

test/funkcjonalny/california_controller_test.rb

require 'test_helper'

class CaliforniaControllerTest < ActionController::TestCase
  def setup
    Californium.delete_all
  end

  test "form" do
    cal = Californium.create(name: 'Benjamin Spock', license_type: 'MD', address: Address.new(street: '311 Temple St', city: 'New Haven', state: 'CT', zip: '06511'))
    assert_equal(1, Californium.count)
    p Californium.find(cal.id)
    get :edit, id: cal.id
    assert(assigns(:californium))
    assert_response(:success)
    puts @response.body
  end
end



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. MongoDB $oid kontra ObjectId

  2. MongoDB C# dla każdego BsonElement

  3. Jak poprawnie zdefiniować obiekt w tablicy w schemacie Mongoose z 2d indeksem geograficznym?

  4. Agregat Mongodb, Jak liczyć dokumenty według kryteriów interwałowych?

  5. Ogranicz użycie pamięci RAM MongoDB