I can't decode my custom HTTP status text using Axios, it's Chinese. and I don't think it's a server-side problem, because it can be decoded by the browser. so what can I do? Any help is greatly appreciated.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script>
axios.get('http://oktool.cc/index/not_found')
.catch(error => {
console.log('statusText', error.response.statusText)
})
</script>
</body>
</html>