簡體   English   中英

錯誤數量的參數(1代表0)錯誤嗎? 欄桿

[英]Weird wrong number of arguments (1 for 0) error? rails

我在保存對象時遇到問題。 我在書簽模型中有以下代碼:

class Bookmark
  include Mongoid::Document
  include Mongoid::Timestamps
  field :owner_req, type: Mongoid
  field :request_id, type: Mongoid
  field :corsponding_requests, type: Array

  belongs_to :user
  belongs_to :request
class << self

    def createBookmark ( title)
      bookmark = self.new
      bookmark[:owner_req] = title[:owner_req] #Here's the error
      bookmark[:request_id] = title[:request_id]
      bookmark[:corsponding_requests] = Array.new
      bookmark[:corsponding_requests].push(*title[:corsponding_requests])
      asd
       if bookmark.save
          bookmark
       end
    end

    def getBookmark(t)
      bookmark = find(t)
      if bookmark
        bookmark
      end
    end
    def getAll
      bookmark = self.all
      if bookmark
        bookmark
      end
    end
  end
end

request_bookmarked函數

  bookmark = Hash.new
      req = User.find(session[:user])

      bookmark["owner_req"] = req[:id]
      bookmark["request_id"] = bookmarked_against_Request[:id]
      bookmark["corsponding_requests"] = Array.new
      bookmark["corsponding_requests"] <<  request_bookmarked[:_id]
      Bookmark.createBookmark(bookmark)
      if request_bookmarked[:favourites_of] == nil
        request_bookmarked[:favourites_of] = Array.new
        request_bookmarked_2[:favourites_of] = Array.new
      end
      if bookmarked_against_Request_2[:favourites] == nil
        bookmarked_against_Request_2[:favourites] = Array.new
        bookmarked_against_Request[:favourites]= Array.new
      end
      bookmarked_against_Request_2[:favourites] << request_bookmarked[:_id]
      request_bookmarked[:favourites_of] << bookmarked_against_Request_2[:_id]
      flash[:notice] = "Request has been bookmarked successfully."
    end
    request_bookmarked.update(Hash['favourites' ,request_bookmarked_2[:favourites]])
    bookmarked_against_Request.update(Hash['favourites' ,bookmarked_against_Request_2[:favourites]])

我已經嘗試過self.new (title)但是它仍然不斷給我錯誤。

這是我的錯誤的屏幕截圖: 錯誤截圖

> ArgumentError - wrong number of arguments (1 for 0): ()
> home/gardezi/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/bundler/gems/mongoid-1a7bbaabf1f0/lib/mongoid/fields/standard.rb:10:in
> `mongoize'   ()
> home/gardezi/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/bundler/gems/mongoid-1a7bbaabf1f0/lib/mongoid/attributes.rb:291:in `typed_value_for'   ()
> home/gardezi/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/bundler/gems/mongoid-1a7bbaabf1f0/lib/mongoid/attributes.rb:174:in `block in write_attribute'   ()
> home/gardezi/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/bundler/gems/mongoid-1a7bbaabf1f0/lib/mongoid/threaded/lifecycle.rb:26:in
> `_assigning'   ()
> home/gardezi/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/bundler/gems/mongoid-1a7bbaabf1f0/lib/mongoid/attributes.rb:170:in `write_attribute'  app/models/bookmark.rb:14:in `createBookmark' 
> app/controllers/requests_controller.rb:217:in `bookmark_request' 
> actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in
> >`send_action'  actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'  actionpack
> (4.2.0) lib/action_controller/metal/rendering.rb:10:in
> >`process_action'  actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in >process_action' 
> activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' 
> activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in
> >halting_and_conditional'  activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in
> >halting_and_conditional'  activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in >halting'

謝謝大家的寶貴時間,但我解決了我的問題。 所有者請求已更改為user_id,因為當我編寫belongs_to:user時,它將假定屬性名稱為user_id

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM