# TCPSocket.connect(Object options)
相关文档: 网络使用说明
# 功能描述
在给定的套接字上启动连接
# 参数
# Object options
属性 | 类型 | 默认值 | 必填 | 说明 | 最低版本 |
---|---|---|---|---|---|
address | string | 是 | 套接字要连接的地址 | ||
port | number | 是 | 套接字要连接的端口 | ||
timeout | number | 2 | 否 | 套接字要连接的超时时间,默认为 2s | |
enableHttpDNS | boolean | false | 否 | 是否开启 HttpDNS 服务。如开启,需要同时填入 httpDNSServiceId 。 HttpDNS 用法详见 移动解析HttpDNS | 3.4.0 |
httpDNSServiceId | string | 否 | HttpDNS 服务商 Id。 HttpDNS 用法详见 移动解析HttpDNS | 3.4.0 |
# 示例代码
const tcp = wx.createTCPSocket()
tcp.connect({address: '192.168.193.2', port: 8848})