paper-ai-release-24-07-21/components/GetSemantic.tsx
liuweiqing 91ab703708 feat: 完善了错误处理
可以从用户界面看到报错原因
2024-02-09 13:45:26 +08:00

65 lines
1.7 KiB
TypeScript

import axios from "axios";
import { getRandomOffset } from "@/utils/others/quillutils";
interface Author {
authorId: string;
name: string;
}
interface Paper {
paperId: string;
title: string;
abstract: string;
year: number;
authors: Author[];
venue: string;
url: string;
}
async function getSemanticPapers(query: string, year: string, limit = 2) {
try {
const maxOffset = 30 - limit; // 假设总记录数为 100
const offset = getRandomOffset(maxOffset);
const url = `https://api.semanticscholar.org/graph/v1/paper/search`;
const response = await axios.get(url, {
headers: {
"x-api-key": process.env.NEXT_PUBLIC_SEMANTIC_API_KEY,
},
params: {
query: query,
offset: offset,
limit: 2,
year: year,
fields: "title,year,authors.name,abstract,venue,url,journal",
},
});
// 提取并处理论文数据
const papers = response.data.data.map((paper: Paper) => {
// 提取每篇论文的作者名字
const authorNames = paper.authors.map((author) => author.name);
return {
...paper,
authors: authorNames, // 替换原有的authors字段为仅包含名字的数组
};
});
return papers;
} catch (error: any) {
// console.error("Error fetching data from Semantic Scholar API:", error);
throw new Error(
`Error fetching data from Semantic Scholar API:${JSON.stringify(
error.response,
null,
2
)}`
);
// return null;
}
}
// 调用函数示例
// fetchSemanticPapers("covid", 50, 2, "2015-2023").then((data) => {
// console.log(data);
// });
export default getSemanticPapers;