-
20210122(금)- 2021. 1. 22. 23:10반응형
sequelize seeder 와 migration 의 차이
: 시더는 샘플데이터로 쓸수잇는거고 마이그레이션은 스키마 구조변경사항기록용?
{ 'Content-Type': 'application/json', withCredentials: true }
쿠키보낼때 랑 cors 요청 할때 with credential ok??
.catch((err) => alert(err));
axios
.post(
"https://localhost:4000/users/login",
{
userId: this.state.username,
password: this.state.password,
},
{
headers: {
"Content-Type": "application/json",
withCredentials: true,
},
}
) //
'-' 카테고리의 다른 글
20210116(토) (0) 2021.01.17 20210112(수) (0) 2021.01.13