控制台输入下这个代码 看看有没有输出302个 |・ω・`) (我没有那么多赞的帖子尝试不了)
还有点回应的 那得多加一个
fetch('https://linux.do/user_actions.json?limit=1000&username=naihe&filter=2') .then(response => response.json()) .then(data => { // 筛选特定 PostId 的数据 const specificPostId = 2232219; const filteredData = data.user_actions.filter(action => action.post_id === specificPostId);
// 提取 acting_username const usernames = filteredData.map(action => action.acting_username);
// 打印或处理 usernames 数组 console.log(usernames); }) .catch(error => console.error('Error fetching data:', error));
|