Next.js template
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

dataIdsRequest.js 311B

12345678910111213
  1. import apiEndpoints from './apiEndpoints';
  2. export const getDataIds = async () => {
  3. const response = await fetch(`http://localhost:3000${apiEndpoints.dataIds}`);
  4. const data = await response.json();
  5. if (!response.ok) {
  6. throw new Error(data.message || 'Something went wrong!');
  7. }
  8. return data;
  9. };