我正在做一个在线教程,他们教你使用MEAN制作一个简单的web应用程序。下面的代码用于编辑给定的JSON对象集合(这里的视频是JSON对象)收藏在/api/videos
所以我必须点击一个href="/#/video/{{video._id}}
,它带我到form.html,我有编辑JSON对象的"标题"one_answers"描述"参数的选项。我不明白的是:
a)为什么需要这个(问题中的完整代码)
var Videos = $resource('/api/videos/:id', { id: '@_id' },
{
update: { method: 'PUT' }
});
由于我在href="/#/video/{{video._id}}
上,我不能直接从URL
var Videos=$resource('api/videos)
Videos.get({ id: $routeParams.id }, function(video){
$scope.video = video;
});
b)工作流是什么?E . router.get()请求是什么时候发出的,router.put()请求是什么时候发出的?根据我的说法,当我点击保存按钮时,控制器向API发出了一个put请求,但我无法确定何时正在发出router.get()请求
我正在尝试阅读express和angular文档,但它们似乎没有解释工作流程。你能告诉我我应该读些什么来更好地理解吗?
这是form.html代码
<h1>Add a Video</h1>
<form>
<div class="form-group">
<label>Title</label>
<input class="form-control" ng-model="video.title"></input>
</div>
<div>
<label>Description</label>
<textarea class="form-control" ng-model="video.description"></textarea>
</div>
<input type="button" class="btn btn-primary" value="Save" ng-click="save()"></input>
</form>
这是控制器代码
app.controller('EditVideoCtrl', ['$scope', '$resource', '$location', '$routeParams',
function($scope, $resource, $location, $routeParams){
var Videos = $resource('/api/videos/:id', { id: '@_id' },
{
update: { method: 'PUT' }
});
Videos.get({ id: $routeParams.id }, function(video){
$scope.video = video;
});
$scope.save = function(){
Videos.update($scope.video, function(){
$location.path('/');
});
}
}]);
这是API端点代码
router.get('/:id', function(req,res){
var collection =db.get('videos');
collection.findOne({_id: req.params.id},function(err,video){
if(err) throw err;
res.json(video);
});
});
router.put('/:id', function(req, res){
var collection=db.get('videos');
collection.update({_id:req.params.id},
{title: req.body.title,
description: req.body.description
},
function (err,video)
{if (err) throw err;
res.json(video);
});
});
根据AngularJS文档中$resource的定义,$resource是:
也就是说,一个工厂,它创建一个资源对象,让你与之交互RESTful服务器端数据源。
是RESTful服务操作的快捷方式。下面的代码创建了一个带有API端点的接口,以使REST操作更容易完成。一旦你有了这个:
var User = $resource('/user/:userId', {userId:'@id'});
更容易做到这一点:
User.get({userId:123}, function(user) {
user.abc = true;
user.$save();
});
因为RESTful是一个标准,而$resource
是Angular使用该标准中API的实现。在其内部,根据您配置和选择的操作,使用适当的头和方法发出异步请求。