728x90
api 통신이나 Ajax통신을 할 때 jwt, Content-type등 헤더 부분을 추가할 때 beforeSend에 넣어주면 된다.
header부분에 Content-type과 JWT을 추가한다고 가정해보자.
function test() {
var token = localStorage.getItem("token");
$.ajax({
type: "GET",
url: "/api/test",
beforeSend: function (xhr) {
xhr.setRequestHeader("Content-type","application/json");//header추가
xhr.setRequestHeader("Authorization","JWT " + token);//header추가
},
success: function (res) {
console.log(res);
}
});
}
깔끔
728x90
'javascript' 카테고리의 다른 글
자바스크립트 배열 선언 및 사용법 정리 (0) | 2019.12.07 |
---|