gpt4 book ai didi

javascript - 将 POST 请求数据 JSON 路由到 View / Controller (node.js)

转载 作者:行者123 更新时间:2023-11-30 21:11:11 24 4
gpt4 key购买 nike

基本上,我在本地服务器 ( http://localhost:3000/ ) 上工作,它从另一台服务器接收发布请求,如下所示:

return requestLib.post({
url: 'http://localhost:3000/test',
timeout: 120000,
json: true,
body: {
user: user,
proposal: proposal
}
});

我想在我的本地服务器上使用来自此发布请求的 json 来为从此发布请求接收到的 json 创建 View 。这是我目前在本地主机服务器上的 routes.js 文件中所做的:

app.post('/test', function(req, res) {
res.render('index', req.body);
res.end();
});

我的问题是如何在我的 Controller 和本地服务器上的 View 中使用接收到的这个 json 作为范围?我对 angular 和 node 非常陌生,因为如果这是一个愚蠢的问题/没有意义,你可能会说很抱歉

最佳答案

在使用 angularjs 时,您可能不想从 POST 请求返回呈现的 View ,因为 angularjs 有它自己的模板系统。 POST 请求通常用于数据保存操作或更新。

app.post('/test', function(req, res) {
var data = req.body
var proposal = data.proposal
// some db operation etc...
res.send("Success")
});

Angularjs 和 node.js 是完全不同的东西。

关于javascript - 将 POST 请求数据 JSON 路由到 View / Controller (node.js),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46121949/

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