gpt4 book ai didi

javascript - put 请求如何通过 Angular、Express 和 Mongoose 工作?

转载 作者:IT老高 更新时间:2023-10-28 13:30:06 25 4
gpt4 key购买 nike

我和一个 friend 正试图弄清楚教程生成的这段代码到底发生了什么。一旦调用了 factory.js 的第 8 行,我们就关心客户端/服务器的流程:

factory.js

app.factory('postFactory', ['$http', function($http)
{
var o = {
posts: []
};

o.upvote = function(post){
return $http.put('/posts/' + post._id + "/upvote").success(function(data){
post.upvotes += 1;
});
};

return o;
}]);

MongoosePost.js

var mongoose = require('mongoose');

var PostSchema = new mongoose.Schema({
title: String,
url: String,
upvotes: {type: Number, default: 0},
comments: [{type: mongoose.Schema.Types.ObjectId, ref: 'Comment' }]
});

PostSchema.methods.upvote = function(cb)
{
this.upvotes += 1;
this.save(cb);
}

mongoose.model('Post', PostSchema);

expressRouter.js

var express = require('express');
var router = express.Router();
var mongoose = require('mongoose');
var Post = mongoose.model('Post');
var Comment = mongoose.model('Comment');

router.put('/posts/:post/upvote', function(req, res, next)
{
req.post.upvote(function(err, post)
{
if(err) { return next(err); }
console.log(post);
res.json(post);
});
});

这里有一个要点,以防人们喜欢它: https://gist.github.com/drknow42/fe1f46e272a785f8aa75

我们认为我们理解的:

  1. factory.js 向服务器发送 put 请求
  2. expressRouter.js 查找 put 请求,发现有一个路由并从 MongoosePost.js 调用 post.upvote 方法(如何它知道要使用什么帖子吗? req 是主体吗?)
  3. Mongoose 对正在发送的帖子添加 1 个赞,然后执行 expressRouter.js 中的回调

我们不明白 res.json(post) 做了什么,而且我们不明白它如何知道实际查看的帖子。

最佳答案

这是RESTful的一些基本规则服务。默认的restful路由是:

Verb    Path Description
GET /post Get all posts
GET /post/create Page where you can create post
POST /post Method to create post in DB
GET /post/:post Show post by id
GET /post/:post/edit Page where you can edit post
PUT/PATCH /post/:post Method to update post in DB
DELETE /post/:post Method to delete post in DB

当您需要更新模型时,您正在向/model/:id 发送请求。根据请求中的 id,它会找到一个要更新的模型。在您的情况下, id 是 :post in url。请求正文包含此模型的新/更新字段。 res.json() 正在将较新版本的模型发送到您的客户端 angular.js 代码。

关于javascript - put 请求如何通过 Angular、Express 和 Mongoose 工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30068389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com