Angular + Mongoose - 数据作为单个数组而不是单个数据进入

时间:2016-02-25 20:37:02

标签: angularjs node.js mongodb mongoose

(评论中的解决方案)

我正在使用我的第一个Angular应用程序,所以如果我的问题描述不明确,请耐心等待。

我将Mongoose模式定义为(显示的所有内容的简化版本):

var personSchema = new mongoose.Schema({
  tags: Array
});

在Angular中我使用代码制作http post

self.post = function(tags) {
    return $http.post(API + '/person', {
        tags: tags
      })
}

我已完成了代码的控制台日志,可以将内容确认为:["test", "test2"]。在做typeof时我也可以确认它是一个对象。

然而,当我查看我的数据库时 - 我没有看到每个值单独显示,而是我看到如此屏幕截图所示:

Robomongo screenshot

有人可以帮助我了解我需要做什么,以便testtest2在数组中显示为2个项目。

非常感谢。

0 个答案:

没有答案