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

2 年前
1234567
  1. import {Guitar} from "../type/guitars";
  2. export const fetchGuitars = async (): Promise<Guitar[]> => {
  3. const response = await fetch(`${process.env.NEXT_PUBLIC_STRAPI_URL}/api/guitars?populate=*`)
  4. const guitars:Guitar[] =await response.json().then((json) => json.data)
  5. return guitars
  6. }