export async function http( request: RequestInfo ): Promise<any> { const response = await fetch(request); const body = await response.json(); return body; } // ...
確定! 回上一頁