微信小程序 post传值到后台, 后台无法接受到数据

问题描述: 微信小程序使用post方式传值,后台看不到数据,(使用get,并且注释掉header的时候可以),按照网上的描述,已经改了data和header

小程序代码

    wx.request({
      url: 'http://127.0.0.1:3000/create2v',
      method: 'POST',
      data: JSON.stringify({
        token: token
      }),
      header: {
        // 'content-type': 'application/json' 
        "Content-Type": "application/x-www-form-urlencoded;charset=utf-8"
      },
      success: res => {
        console.log(res);
      },
      fail: err => {
        console.log(err);
      }
    })

后台代码

exports.create2v = async (req, res) => {
  let url = `https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=${accessToken}`
  console.log("========");
  console.log(req);
  console.log(req.query);
  console.log(req.body);
  console.log(req.params);
}

从你这后端代码看起来是get方式啊。