阿就是簡單的 api response 阿
你後端檢查到有任何不合規定的時候
就回傳給前端
以 nodejs express 來舉例
const datas = req.body;
if (typeof datas.account === 'undefined' || !data.account) {
res.status(400).send({ msg: 'Account can not be empty' }).end();
}
而且基本上
你在前端的檢查可以無視
永遠不要相信來自前端的東西