Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- 모두의 파이썬
- Concurrently
- Colaboratory 글자 깨짐
- 리액트
- JS 개념
- 인프런
- react오류
- 노드에 리액트 추가하기
- react
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- DB Browser
- 모던자바스크립트
- spring-boot
- googleColaboratory
- Spring-Framework
- 웹 게임을 만들며 배우는 리액트
- Python
- 타자 게임 만들기
- node.js 설치
- 자바스크립트
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- props
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- intellij
- 거북이 대포 게임
- 따라하며 배우는 노드 리액트 기본 강의
- node.js로 로그인하기
- Do it 자바스크립트 + 제이쿼리 입문
- vs code 내 node
- 계산맞추기 게임
Archives
- Today
- Total
프로그래밍 삽질 중
kakao login notnull violation: user.email cannot be null 해결법 본문
과거 프로그래밍 자료들/React
kakao login notnull violation: user.email cannot be null 해결법
평부 2022. 8. 26. 17:48
* 상황 : 카카오로 로그인 하는 과정에서 오류가 생김
* 오류 원문
kakao notnull violation: user.email cannot be null, notnull violation: user.password cannot be null
kakao login notnull violation: user.email cannot be null
parent: Error: Field 'email' doesn't have a default value
* 문제 해결에 도움을 준 글
https://www.inflearn.com/questions/5623
* 수정 전 models/user.js
const Sequelize = require("sequelize");
module.exports = class User extends Sequelize.Model {
static init(sequelize) {
return super.init(
{
email: {
type: Sequelize.STRING(40),
allowNull: false,
unique: true,
},
nick: {
type: Sequelize.STRING(15),
allowNull: false,
},
password: {
type: Sequelize.STRING(100),
allowNull: false,
},
provider: {
type: Sequelize.STRING(10),
allowNull: false,
defaultValue: "local",
},
snsId: {
type: Sequelize.STRING(30),
allowNull: true,
},
},
{
sequelize,
timestamps: true,
underscored: false,
modelName: "User",
tableName: "users",
paranoid: true,
charset: "utf8",
collate: "utf8_general_ci",
}
);
}
static associate(db) {
db.User.hasMany(db.Post);
db.User.belongsToMany(db.User, {
foreignKey: "followingId",
as: "Followers",
through: "Follow",
});
db.User.belongsToMany(db.User, {
foreignKey: "followerId",
as: "Followings",
through: "Follow",
});
}
};
* 수정 후 models/user.js -> mysql에 있는 nodebird 테이블 삭제 -> npm start(nodemon app.js)로 재시작
-> 카카오로 로그인
const Sequelize = require("sequelize");
module.exports = class User extends Sequelize.Model {
static init(sequelize) {
return super.init(
{
email: {
type: Sequelize.STRING(40),
allowNull: true, //수정
unique: true,
},
nick: {
type: Sequelize.STRING(15),
allowNull: false,
},
password: {
type: Sequelize.STRING(100),
allowNull: true, //수정
},
provider: {
type: Sequelize.STRING(10),
allowNull: false,
defaultValue: "local",
},
snsId: {
type: Sequelize.STRING(30),
allowNull: true,
},
},
{
sequelize,
timestamps: true,
underscored: false,
modelName: "User",
tableName: "users",
paranoid: true,
charset: "utf8",
collate: "utf8_general_ci",
}
);
}
static associate(db) {
db.User.hasMany(db.Post);
db.User.belongsToMany(db.User, {
foreignKey: "followingId",
as: "Followers",
through: "Follow",
});
db.User.belongsToMany(db.User, {
foreignKey: "followerId",
as: "Followings",
through: "Follow",
});
}
};
* 전체 코드
https://github.com/ZeroCho/nodejs-book/tree/master/ch9/9.5/nodebird
'과거 프로그래밍 자료들 > React' 카테고리의 다른 글
[웹 게임을 만들며 배우는 React] - Hoonks, 웹팩 (0) | 2022.09.27 |
---|---|
[웹 게임을 만들며 배우는 React] - 구구단 (0) | 2022.09.02 |
[러닝리액트 2판] 3장 자바스크립트를 활용한 함수형 프로그래밍 1 (0) | 2022.06.09 |
React로 좋아요 버튼 누르기(1) - mongoDB users에 정보 담기 (0) | 2022.05.26 |
React로 상세페이지 만들기 (2) - 상세 정보 보여주기 (0) | 2022.05.25 |