1
在mongo集合下面有一個名爲'職責'的字段。該字段的值是一個很長的字符串,因爲它包含下面示例文檔中顯示的項目符號值)。是否有存儲這個值沒有更好的辦法。如何在mongo字段中存儲項目符號列表或值列表
{ "_id" : ObjectId("551d6f4c40cd93dd6bec7dbf"),
"name" : "xxxx",
"desc" : "xxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"teamsize" : 11,
"location" : "xxxxx",
"startDate" : ISODate("2014-06-01T00:00:00Z"),
"endDate" : ISODate("2015-03-01T00:00:00Z"),
"responsibilities" : "1. xxxxxxx , 2.xxxxxx, 3.xxxxxxxx",
"organisationName" : "xxxxxxxx"
}
你的問題相當不清楚,這個項目列表從哪裏來?你有任何mongo系列的樣品文件嗎? – chridam 2015-04-02 16:43:11
編輯該問題以使其更清楚。在我的情況下,項目符號列表來自一個休息端點。 – trial999 2015-04-02 16:51:37
列表中的元素是什麼?字符串?數字?名單? – wdberkeley 2015-04-02 18:31:26