收藏
回答

UDP发送与接收异常

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug UDP 微信安卓客户端 7.0.14 2.11.3
this.udpObj=wx.createUDPSocket();
			this.udpObj.bind();
			this.udpObj.send({
			    address: '192.168.193.2',
			    port: 8848,
			    message: 'hello, how are you'
			  })
			this.udpObj.onListening(function(res){
			     console.log('监听中...')
			     console.log(res)
			   })
			this.udpObj.onError(res=>{
				console.log("error")
				console.log(res)
			})
			this.udpObj.onMessage(res=>{
				console.log("收到udp包的消息")
				console.log(res);
			})

{errMsg: "send: fail sendUDPSocketMessage:fail The "buffer" …r, Uint8Array, or string. Received type undefined"}errMsg: "send: fail sendUDPSocketMessage:fail The "buffer" argument must be one of type Buffer, Uint8Array, or string. Received type undefined"__proto__: Object

最后一次编辑于  2020-07-15
回答关注问题邀请回答
收藏

2 个回答

  • 三七
    三七
    2020-07-21

    我也遇到一样的问题了,请问楼主解决了么?

    send: fail sendUDPSocketMessage:fail The "buffer" argument must be one of type Buffer, Uint8Array, or string. Received type undefined

    这是我的报错信息

    2020-07-21
    有用
    回复 1
    • 李汉三
      李汉三
      2021-11-22
      message只能是string/ArrayBuffer类型
      2021-11-22
      回复
  • 灵芝
    灵芝
    2020-07-15

    你好,请更新微信版本后重试。若还有问题,请提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

    2020-07-15
    有用
    回复 2
    • 空白
      空白
      2020-07-16
      微信小程序 开发工具能调试udp吗 ,udp一直收不到消息,真机调试可以吗
      2020-07-16
      回复
    • 灵芝
      灵芝
      2020-07-20回复空白
      可以的,使用的是哪个版本的工具?报错信息是什么
      2020-07-20
      回复
登录 后发表内容
问题标签