我讓我的 Javascript 與我的 API 網關通信,我的計數器一直在上升,但是在我的控制臺上它顯示“未定義”,我不確定如何解決這個問題。我不確定我的代碼發(fā)生了什么變化,但不是我收到一條不同的消息,而不是通常的“未定義”。fetch('https://wwrr7r0kj5.execute-api.eu-west-2.amazonaws.com/dev/') .then(response => response.text()) .then(contents =>{ console.log(contents); document.getElementById("visitors").innerHTML = contents}) Promise {<pending>} VM126:4 296 <script> fetch('aws api') .then(response => response.text()) .then(contents => console.log(contents)) document.getElementById("visitors").innerhtml = content </script><div> <p style="text-align: center;color: white;"> Visitors: <span id="visitors">0</span> </p></div>
我如何擺脫我的 JS 控制臺中的未定義/未定義消息
慕姐4208626
2022-12-02 17:07:49