본문 바로가기

개발중/Vue.js

vue post (insert )

728x90
반응형

vue 에서 insert 할 때는 FormData 를 생성해서 데이터를 실어 보내줘야 한다.

 

이유는 post 를 할 때에는 headers - ContentType 이 'application/x-www-form-urlencoded' 이기 때문이다.

 

더보기
export function insertLearning(data){

    const frm = new FormData()

	frm.append('mmtSeq', data.mmtSeq)
	frm.append('tdiSeq', data.tdiSeq)
	frm.append('mmiName', data.mmiName)

	return request({
		url: '/api/machine-learning',
		method: 'post',
		headers: {'Content-Type': 'application/x-www-form-urlencoded'},
        data : frm
	})
    
}

 

728x90
반응형

'개발중 > Vue.js' 카테고리의 다른 글

vue - api 랑 통신하기  (0) 2021.06.21
vue excel 다운로드 - blob Download  (0) 2021.06.18
드래그 앤 드랍 기능 참고 사이트 기록  (0) 2021.05.20
vue - popup 이해  (0) 2021.05.19
axios 경로 분석  (0) 2021.04.26