node express返回json数据给前端

请注意,使用res.json()的格式

1.前面不能添加  res.writeHead(200, {'content-type': 'text/plain;charset=utf-8'});

axios.post('xxx').then((response) => {
    if (response.data.code === '200') {
              // res.writeHead(200, {'content-type': 'text/plain;charset=utf-8'}); 
              // res.end("{'status':200, 'message': '上传成功!'}");
              res.json({status: response.data.code, message: '上传成功'});
            } else {
              // res.writeHead(200, {'content-type': 'text/plain;charset=utf-8'});
              res.json({status: response.data.code, message: response.data.msg});
            } 
})

这里 res.writeHead()需要配和 res.end()使用但是res.json()不需要添加header了,否则会报错


2、还说明一点用 res.json() 返回个前端的数据就是json格式的,不是json字符串,这一点请和res.end('xxx')返回的是json字符串做区别开
前端接收代码
axios.post('/upload', formData).then((res) => {
        console.log(res.data) // {status: '478', message: 'JSON格式不对'}
        console.log(typeof res.data)  // object
        const data = res.data
        if (data.status === '200') {
          _this.$message({
            message: '上传成功!',
            type: 'success'
          });
        } else {
          _this.$message({
            message: data.message,
            type: 'error'
          });
        }

 

 

转载于:https://www.cnblogs.com/mmzuo-798/p/11125447.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值