wx.request({
      url: 'https://127.0.0.1:8443/user/testRSA',//请求路径
      data:{
        column: output  //请求数据
      },
      header:{
        'content-type':"application/json", //请求头
      },
      method:"POST", //请求方法
      dataType:"json",//请求类型
      success(data){  //请求成功的参数
        console.log(data);
      }
    })

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-18
  • 2022-02-08
  • 2022-12-23
  • 2021-06-07
猜你喜欢
  • 2021-10-06
  • 2021-12-18
  • 2022-01-22
  • 2021-12-18
  • 2022-12-23
  • 2022-12-23
  • 2021-10-08
相关资源
相似解决方案