MEAN.js中的读/写操作

时间:2015-03-25 12:35:58

标签: mongodb mongoose meanjs yo

我刚开始使用mean.js并对其工作流程感到困惑。我用yo man generator创建了一个新模块。我需要澄清一下

  • 如何将记录添加到数据库中,即查询在哪里。
  • 如何更新记录

1 个答案:

答案 0 :(得分:0)

所有CRUD功能都位于public/modules/yourModule/controllers内,您可以看到yourModule.client.controller.js

在里面你可以看到函数$scope.create$scope.remove$scope.update$scope.find$scope.findOne

在您的视图public/modules/yourModule/views中调用这些函数。

在里面,您可以看到四个用于CRUD操作的文件 create-yourModule.client.view.htmledit-yourModule.client.view.htmllist-yourModule.client.view.htmlview-yourModule.client.view.html

例如:在create-yourModule.client.view.html form上,您可以看到<form class="form-horizontal" data-ng-submit="create()"> create()函数被调用。

如果要查看mongoose模型架构app/models/yourModule.server.model.js

有关详细信息,请观看此优秀教程here,(观看视频9至15)