使用Fetch示例:
fetch('http://example.com/movies.json') .then(response => response.json()) .then(data => console.log(data));
使用Node.js Axios示例:
const axios = require('axios');
axios.get('http://example.com/movies.json') .then(response => console.log(response.data)) .catch(error => console.log(error));