node. js 처리 axios 의 post 요청 데이터 에 부 딪 힌 구덩이

923 단어 전단

1. 우선 axios 설치
cnpm install axios
2, 다시 man. js 에서 axios 설정
import axios from 'axios'
Vue.prototype.$http = axios;
axios.defaults.timeout = 6000;//요청 최대 시간
axios.defaults.headers.post['Content-Type'] = 'application/json;charset=UTF-8';      //post 요청 헤더 설정
 
 
get 요청
this.$http.get(url,{params:{name:'lirun',sex:' '}}).then(function(res)

{

console.log(res);

})
 node     

  request.query       


post 요청, 요청 형식 은 application / json 입 니 다.
this.$http.post(url,{name:'lirun',sex:' '}).then(function(res)
{
console.log(res);
})





 node      


 //  body-parser,    post       
var bodyParser = require('body-parser')
//bodyParser  
app.use(bodyParser.json());
app.use( bodyParser.urlencoded({
    extended: false
}) )

   node     request.body     

좋은 웹페이지 즐겨찾기