toString 변환 시 발생하는 에러
에러: Cannot read property 'toString' of null
해결
값이 null 인 경우 발생하는 에러로
var formNumber = "" + number; <-- String으로 강제 변환 후
formNumber.toString() ... 하면 된다.
'에러 > react' 카테고리의 다른 글
[React] Uncaught (in promise) TypeError: Cannot read property 'push' of undefined (0) | 2021.05.03 |
---|---|
[React] TypeError Cannot read property 'setState' of undefined 에러 (0) | 2021.05.03 |
[NodeJS] cannot set headers after they are sent to the client 에러 (0) | 2021.03.10 |
[React] ENOSPC: System limit for number of file watchers reached 에러 (0) | 2021.01.31 |
yarn init 에러 (0) | 2020.12.21 |
댓글