在nodejs中发送动态HTTP请求而不是硬编码

时间:2015-04-02 10:59:18

标签: javascript node.js express

目前,我正在使用请求模块将http请求发送到nodejs程序中的URL

request('http://example.org/upload',function(error,response,data) {})

但我希望动态地将http请求发送到example.org以路由到"上传"或者"登录"或"退出"基于存储在变量中的值,如

var dynamic= "upload"
request('http://example.org/dynamic',function(error,response,data) {})

上面的代码没有按预期工作,因为它在example.org中路由到动态。我该怎么办才能按要求发送请求?

0 个答案:

没有答案