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

singleDataRequest.js 340B

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