npm请求设置正文

时间:2017-10-04 01:02:15

标签: node.js request node-modules

使用request时,如何设置请求正文? 0.8f参数创建一个键值对的主体:#include <tuple> #include <algorithm> #include <vector> #include <functional> int main() { std::vector<std::tuple<int, int>> v = {{1,0}, {2,3}, {4,5}}; const int val = 2; std::equal_range(v.cbegin(), v.cend(), std::make_tuple(std::cref(val), 0), [&val] (const auto& l, const auto& r) { return std::get<0>(l) < std::get<0>(r); }); } ,但是如何将主体设置为任意字符串?

1 个答案:

答案 0 :(得分:2)

您可以在选项参数中设置请求正文。

const options = {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({test: 1});
};
request(options, function (err, res, body) {
  // handle err or use response and response boy
});

根据您要发送的内容,您可以提供所需的字符串。