SYNC-HP用のサンプル
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 2 años
hace 2 años
hace 2 años
hace 2 años
hace 2 años
123456789101112131415161718192021222324252627
  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. };
  14. /**
  15. * Guitar情報取得処理
  16. */
  17. export const fetchGuitarDetail = async (id: string): Promise<Guitar> => {
  18. // StrapiのAPIを呼び出し
  19. const response = await fetch(
  20. `${process.env.NEXT_PUBLIC_STRAPI_URL}/api/guitars/${id}?populate=*`
  21. );
  22. // apiのresponseからdata部のみ取り出し
  23. const guitar: Guitar = await response.json().then((json) => json.data);
  24. return guitar;
  25. };