云函数axios请求stringify response to json failed?

发布于 6 年前作者 xiulan794022 次浏览最后编辑 6 年前来自 ask
router.get('/wyu/jwxc/login', (req, res) => {
  try {
    (async () => {
      let img = await login()
      res.send({
       data: "data:image/jpeg;base64," + img
      });
    })()
  } catch (error) {
    res.send({
      img: 500
    });
  }

})

不知道为什么会报错?

0 回复
暂无回复