Mi Lugarcito
TypeError [ERR_INVALID_ARG_TYPE]: The "data" argument must be of type string or an instance of Buffer, TypedArray, or DataView. Received type number (1234) 본문
Express.js
TypeError [ERR_INVALID_ARG_TYPE]: The "data" argument must be of type string or an instance of Buffer, TypedArray, or DataView. Received type number (1234)
selene park 2021. 4. 22. 01:50
config.js 에서 mysql 비밀번호 숫자를 "" string 으로 변환 시켜줘야한다.
{
"development": {
"username": "root",
"password": "1234",
"database": "react-nodebird",
"host": "127.0.0.1",
"dialect": "mysql"
},
"test": {
"username": "root",
"password": null,
"database": "react-nodebird",
"host": "127.0.0.1",
"dialect": "mysql"
},
"production": {
"username": "root",
"password": null,
"database": "react-nodebird",
"host": "127.0.0.1",
"dialect": "mysql"
}
}
'Express.js' 카테고리의 다른 글
[포스트맨] 파일업로드 & multipart/form-data (0) | 2022.08.07 |
---|---|
[nodejs]error C:<프로젝트 경로>\node_modules\node-sass command failed (0) | 2022.04.03 |
Node.js ) Weather App-1 (0) | 2021.04.08 |
Node.js - Twitter Clone Coding // Unreadnotification/messages badges (0) | 2021.04.05 |
Node.js - Twitter Clone Coding // Displaying notifications (0) | 2021.04.05 |