efforthye / etherscat_block_explorer_react

personal geth project / etherscan : https://etherscan.io/
2 stars 0 forks source link

Uncaught (in promise) Error: Request failed with status code 908 #16

Open efforthye opened 1 year ago

efforthye commented 1 year ago

POST http://localhost:8080/api/test/getBalance 908 (unknown)

efforthye commented 1 year ago

res.send() 로 number 형식의 값을 보냈기 때문에 에러가 났으며 값의 형식을 string 으로 변경하여 해결하였다. res.send({data : value}); 이처럼 객체에 넣어서 보내는 것도 좋은 방법인 것 같다.