相思资源网 Design By www.200059.com

方法说明:

此功能已过时,新版本使用 [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方法

相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com

评论“node.js中的http.createClient方法使用说明”

暂无node.js中的http.createClient方法使用说明的评论...