0

次のようなドキュメントを含むグループと呼ばれるMongoDBコレクションに取得したいグループのYAMLファイルがあります{"name" => "golf", "parent" => "sports"}スポーツのようなトップレベルのグループには{"name" => "sports"}..parent

ネストされた hash をトラバースしようとしていますが、正しく機能しているかどうかはわかりません。ラムダ プロシージャよりも再帰的な方法を使用したいと思います。機能させるには何を変更する必要がありますか?

ありがとう!

マット

4

2 に答える 2

2

動作するコードは次のとおりです。

require 'mongo'
require 'yaml'

conn = Mongo::Connection.new
db = conn.db("acani")
interests = db.collection("interests")
@@interest_id = 0
interests_hash = YAML::load_file('interests.yml')

def interests.insert_interest(interest, parent=nil)
  interest_id = @@interest_id.to_s(36)
  if interest.is_a? String # base case
    insert({:_id => interest_id, :n => interest, :p => parent})
    @@interest_id += 1
  else # it's a hash
    interest = interest.first # get key-value pair in hash
    interest_name = interest[0]
    insert({:_id => interest_id, :n => interest_name, :p => parent})
    @@interest_id += 1
    interest[1].each do |i|
      insert_interest(i, interest_name)
    end
  end
end

interests.insert_interest interests_hash

インタレストYAMLを表示します。acaniソース
を 表示します。

于 2010-12-24T04:14:04.457 に答える
0

あなたの質問は、このコードを変換する方法です:

insert_enumerable = lambda {|obj, collection|
   # obj = {:value => obj} if !obj.kind_of? Enumerable
   if(obj.kind_of? Array or obj.kind_of? Hash)
      obj.each do |k, v|
        v = (v.nil?) ? k : v
        insert_enumerable.call({:value => v, :parent => obj}, collection)
      end
   else
      obj = {:value => obj}
   end
   # collection.insert({name => obj[:value], :parent => obj[:parent]})
   pp({name => obj[:value], :parent => obj[:parent]})
}

...ラムダではなくメソッドを使用するには? その場合、次のようになります。

def insert_enumerable( obj, collection )
   # obj = {:value => obj} if !obj.kind_of? Enumerable
   if(obj.kind_of? Array or obj.kind_of? Hash)
      obj.each do |k, v|
        v = (v.nil?) ? k : v
        insert_enumerable({:value => v, :parent => obj}, collection)
      end
   else
      obj = {:value => obj}
   end
   # collection.insert({name => obj[:value], :parent => obj[:parent]})
   pp({name => obj[:value], :parent => obj[:parent]})
end

それがあなたが求めているものでない場合は、明確にしてください。

于 2010-12-06T18:00:33.300 に答える