我正在为我的公司构建一个Web应用程序,我想知道在包含多个存储过程的api上,多个数据的最佳实践是什么。目前,此代码成功从SP#40中提取数据。我想从其他SP中为该特定路线提取更多数据。抱歉听起来很神秘。
router.get('/', function (req, res) {
request('http://dummyurl.com:8080/reports/40?type=0&key=key1234',
function (error, response, body) {
if(!error && response.statusCode === 200) {
res.render('index', {
title: 'Project Insight',
body: body,
request: request
});
}
})
})
感谢您提供的任何帮助。