async function fetchMoviesJSON() { const response = await fetch('/movies'); const movies = await response.json(); return movies; } ...
確定! 回上一頁