我使用superagent
我遇到了动态方法名称的问题。
对于我写的每一种方法:
request
.get(url)
request
.post(url)
有没有办法将方法名称作为参数传递给superagent,就像在axios
中完成的那样 axios({
method: 'post',
url,
data
});
答案 0 :(得分:3)
您也可以使用以下方式检查docs
request('GET', url).end(callback);// and pass your first param as http verb 'GET','POST', etc...
而不是
request.get(url);
或者
request.post(url);