在您的控制器中发出 HTTP 请求 - sails.js
Make a HTTP request in your Controller - sails.js
是否可以在控制器中发出请求?我尝试使用 node.js http 模块但没有成功。还有其他方法吗?
好的,我设法使用另一个模块 'request' 解决了这个问题。我做了什么:
在您的项目中安装模块:
npm install -S request
在你的代码中你应该有:
var request = require('request');
request.get({
url: <your url>
}, function(error, response, body) {
if (error) {
sails.log.error(error);
}
else {
sails.log.info(response);
sails.log.info(body);
}
});
我将节点的本地 https.get(或 http.get)包装在一个承诺中,并从控制器调用,如下所示:
const https = require('https')
// wrap node's https.get stream call as a promise
// note: assumes utf-8 encoded data payload to get.
async function getdata(url) {
return new Promise((resolve, reject) => {
https.get(url, (res) => {
res.setEncoding('utf8');
let data = '';
res.on('data', (chunk) => {
data = data + chunk;
});
res.on('end', () => {
resolve(data);
})
}).on('error', (e) => {
reject(e);
});
});
}
// Call from sails controller
module.exports = {
myaction: async function(req, res) {
let data;
try {
data = await getdata('https://example.com/index.html');
} catch (e) {
// handle it
}
...
}
}
对于来自未来的人,request package 自 2020 年 2 月 11 日起已完全弃用。
请求有recommended的备选选项如下
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Package Name | Bundle Size | API Style | Summary |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| node-fetch | 0.4kb | promise / stream | A light-weight module that brings window.fetch to Node.js |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| bent | 1kb | fp / promise / stream | Functional HTTP client w/ async/await |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| got | 48.4kb | promise / stream | Simplified HTTP requests |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| make-fetch-happen | 442kb | promise / stream | make-fetch-happen is a Node.js library that wraps node-fetch-npm with additional features node-fetch doesn’t intend to include, including HTTP Cache support, request pooling, proxies, retries, and more! |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| axios | 11.9kb | promise / stream | Promise based HTTP client for the browser and node.js |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| unfetch | 1kb | promise / stream | Tiny 500b fetch “barely-polyfill” |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| superagent | 18kb | chaining / promise | Small progressive client-side HTTP request library, and Node.js module with the same API, sporting many high-level HTTP client features |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tiny-json-http | 22kb | promise | Minimalist HTTP client for GET and POSTing JSON payloads |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| needle | 164kb | chaining / promise | The leanest and most handsome HTTP client in the Nodelands |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| urllib | 816kb | callback / promise | Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
是否可以在控制器中发出请求?我尝试使用 node.js http 模块但没有成功。还有其他方法吗?
好的,我设法使用另一个模块 'request' 解决了这个问题。我做了什么:
在您的项目中安装模块:
npm install -S request
在你的代码中你应该有:
var request = require('request');
request.get({
url: <your url>
}, function(error, response, body) {
if (error) {
sails.log.error(error);
}
else {
sails.log.info(response);
sails.log.info(body);
}
});
我将节点的本地 https.get(或 http.get)包装在一个承诺中,并从控制器调用,如下所示:
const https = require('https')
// wrap node's https.get stream call as a promise
// note: assumes utf-8 encoded data payload to get.
async function getdata(url) {
return new Promise((resolve, reject) => {
https.get(url, (res) => {
res.setEncoding('utf8');
let data = '';
res.on('data', (chunk) => {
data = data + chunk;
});
res.on('end', () => {
resolve(data);
})
}).on('error', (e) => {
reject(e);
});
});
}
// Call from sails controller
module.exports = {
myaction: async function(req, res) {
let data;
try {
data = await getdata('https://example.com/index.html');
} catch (e) {
// handle it
}
...
}
}
对于来自未来的人,request package 自 2020 年 2 月 11 日起已完全弃用。
请求有recommended的备选选项如下
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Package Name | Bundle Size | API Style | Summary |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| node-fetch | 0.4kb | promise / stream | A light-weight module that brings window.fetch to Node.js |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| bent | 1kb | fp / promise / stream | Functional HTTP client w/ async/await |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| got | 48.4kb | promise / stream | Simplified HTTP requests |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| make-fetch-happen | 442kb | promise / stream | make-fetch-happen is a Node.js library that wraps node-fetch-npm with additional features node-fetch doesn’t intend to include, including HTTP Cache support, request pooling, proxies, retries, and more! |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| axios | 11.9kb | promise / stream | Promise based HTTP client for the browser and node.js |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| unfetch | 1kb | promise / stream | Tiny 500b fetch “barely-polyfill” |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| superagent | 18kb | chaining / promise | Small progressive client-side HTTP request library, and Node.js module with the same API, sporting many high-level HTTP client features |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tiny-json-http | 22kb | promise | Minimalist HTTP client for GET and POSTing JSON payloads |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| needle | 164kb | chaining / promise | The leanest and most handsome HTTP client in the Nodelands |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| urllib | 816kb | callback / promise | Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. |
+-------------------+-------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+