之前用AJAX直接可以设置类型就可以
使用axios 发现设置了
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=utf-8'
后端依然收不到数据
import querystring from 'querystring'
let param = { ip: that.ip, port: that.port, type: that.type }
后来发现是因为axios参数问题
使用 axios.post('check',querystrin.stringify(param))
就可以了