5
有沒有簡單的方法將List變成MongoDBList(或BasicDBList)?Scala,Casbah - 如何將List轉換爲MongoDBList?
有沒有簡單的方法將List變成MongoDBList(或BasicDBList)?Scala,Casbah - 如何將List轉換爲MongoDBList?
scala> val list = List("foo", "bar")
list: List[java.lang.String] = List(foo, bar)
scala> val dbList = MongoDBList(list:_*)
dbList: com.mongodb.casbah.commons.MongoDBList = [ "foo" , "bar"]
提示:總是先閱讀源代碼。它可以爲您的問題提供很多答案,並且會很有用。這可能在第一時間很難,但隨後變得越來越自然。
我很欣賞你在閱讀資料的提示。但是...我們有StackOverflow。拯救我的每一天。 :) – akauppi 2014-08-28 06:25:25