Posted in Javascript onDecember 15, 2014
方法说明:
此功能已过时,新版本使用 [http.request()][] 来代替它。
构建了一种新的HTTP客户端。
语法:
http.createClient([port], [host])
由于该方法属于http模块,使用前需要引入http模块(var http= require(“http”) )
接收参数:
post 端口
host 主机
源码:
exports.createClient = util.deprecate(function(port, host) { return new Client(port, host); }, 'http.createClient is deprecated. Use `http.request` instead.');
node.js中的http.createClient方法使用说明
- Author -
junjie声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@