SYNC-HP用のサンプル
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
426B

  1. import { Guitar } from "../type/guitars";
  2. /**
  3. * Guitar情報取得処理
  4. */
  5. export const fetchGuitars = async (): Promise<Guitar[]> => {
  6. // StrapiのAPIを呼び出し
  7. const response = await fetch(
  8. `${process.env.NEXT_PUBLIC_STRAPI_URL}/api/guitars?populate=*`
  9. );
  10. // apiのresponseからdata部のみ取り出し
  11. const guitars: Guitar[] = await response.json().then((json) => json.data);
  12. return guitars;
  13. };