我正在学习提取API。
我使用的箭头功能无效,但使用正常的功能。 为什么会这样?
我还在Chrome的Console上调用了箭头功能。它工作正常....我不明白 我了解箭头功能等于正常功能吗?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fetch Api</title>
</head>
<body>
<button id="getText">Get Text</button>
<script>
document.getElementById('getText').addEventListener
('click', getText);
// function getText() {
// fetch('sample.txt')
// .then((res) => res.text())
// .then((data) => console.log(data))
// }
const getText = () => {
fetch('sample.txt')
.then((res) => res.text())
.then((data) => console.log(data))
}
</script>
</body>
</html>
答案 0 :(得分:-2)
您要在定义Could not connect to address=(host=0.0.0.0)(port=3306)(type=master) : Socket fail to connect to host:0.0.0.0, port:3306. Connection refused (Connection refused)
事件监听器之前。