Update examples & uppercase endpoints & fix response (#8391)

Co-authored-by: liruifeng <liruifeng@troila.com>
This commit is contained in:
李瑞丰 2023-09-04 23:10:39 +08:00 committed by GitHub
parent 77922ae5db
commit d92ab06544
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 26 deletions

View file

@ -2,7 +2,7 @@ import rss from '@astrojs/rss';
import { getCollection } from 'astro:content';
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
export async function get(context) {
export async function GET(context) {
const posts = await getCollection('blog');
return rss({
title: SITE_TITLE,

View file

@ -1,11 +1,9 @@
// Returns the file body for this non-HTML file.
// The content type is based off of the extension in the filename,
// in this case: about.json.
export async function get() {
return {
body: JSON.stringify({
name: 'Astro',
url: 'https://astro.build/',
}),
};
export async function GET() {
return new Response(JSON.stringify({
name: 'Astro',
url: 'https://astro.build/',
}));
}

View file

@ -1,7 +1,7 @@
import { APIContext } from 'astro';
import { userCartItems } from '../../models/session';
export function get({ cookies }: APIContext) {
export function GET({ cookies }: APIContext) {
let userId = cookies.get('user-id').value;
if (!userId || !userCartItems.has(userId)) {
@ -12,9 +12,7 @@ export function get({ cookies }: APIContext) {
let items = userCartItems.get(userId);
let array = Array.from(items.values());
return {
body: JSON.stringify({ items: array }),
};
return new Response(JSON.stringify({ items: array }));
}
interface AddToCartItem {
@ -22,7 +20,7 @@ interface AddToCartItem {
name: string;
}
export async function post({ cookies, request }: APIContext) {
export async function POST({ cookies, request }: APIContext) {
const item: AddToCartItem = await request.json();
let userId = cookies.get('user-id').value;
@ -38,9 +36,7 @@ export async function post({ cookies, request }: APIContext) {
cart.set(item.id, { id: item.id, name: item.name, count: 1 });
}
return {
body: JSON.stringify({
ok: true,
}),
};
return new Response(JSON.stringify({
ok: true,
}));
}

View file

@ -1,7 +1,5 @@
import { products } from '../../models/db';
export function get() {
return {
body: JSON.stringify(products),
};
export function GET() {
return new Response(JSON.stringify(products));
}

View file

@ -1,14 +1,12 @@
import { productMap } from '../../../models/db';
import type { APIContext } from 'astro';
export function get({ params }: APIContext) {
export function GET({ params }: APIContext) {
const id = Number(params.id);
if (productMap.has(id)) {
const product = productMap.get(id);
return {
body: JSON.stringify(product),
};
return new Response(JSON.stringify(products));
} else {
return new Response(null, {
status: 400,