feat: 调整api路径

This commit is contained in:
2026-07-31 00:38:57 +08:00
parent a91ee9ac55
commit 3100c1c1e9
5 changed files with 5 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ import { createHttp } from "@/lib/request";
const http = createHttp(Astro.request.headers);
const { data: categories } =
await http.get<ApiResponse<CategoriesStats[]>>("category/stats");
await http.get<ApiResponse<CategoriesStats[]>>("categories/stats");
---
<aside class="sidebar">

View File

@@ -5,7 +5,7 @@ import {createHttp} from "@/lib/request";
const http = createHttp(Astro.request.headers);
const {data} = await http.get<ApiResponse<Archive>>("post/archive");
const {data} = await http.get<ApiResponse<Archive>>("posts/archives");
---
<Layout title="归档">

View File

@@ -7,7 +7,7 @@ import { metadata } from "@/consts.ts";
const http = createHttp(Astro.request.headers);
const { list, total } = await http.get<ApiPageResponse<Post>>("post", {
const { list, total } = await http.get<ApiPageResponse<Post>>("posts", {
searchParams: {
page: 1,
page_size: metadata.postPageSize,

View File

@@ -13,7 +13,7 @@ if (isNaN(Number(page))) {
const http = createHttp(Astro.request.headers);
const { list, total } = await http.get<ApiPageResponse<Post>>("post", {
const { list, total } = await http.get<ApiPageResponse<Post>>("posts", {
searchParams: {
page,
page_size: metadata.postPageSize,

View File

@@ -16,7 +16,7 @@ let data: Post;
const http = createHttp(Astro.request.headers);
try {
const res = await http.get<ApiResponse<Post>>(`post/${slug}`);
const res = await http.get<ApiResponse<Post>>(`posts/${slug}`);
data = res.data;
} catch (error) {
return Astro.redirect("/404");