“nextjs API contoh naskah” Kode Jawaban

nextjs API contoh naskah

import type { NextApiRequest, NextApiResponse } from "next";

type Data = {
  name: string;
};

const handler = (req: NextApiRequest, res: NextApiResponse<Data>) => {
  res.status(200).json({ name: "John Doe" });
};

export default handler;
Bewildered Bug

Next API TypeScript

import type { NextApiRequest, NextApiResponse } from 'next'

type Data = {
  name: string
}

export default (req: NextApiRequest, res: NextApiResponse<Data>) => {
  res.status(200).json({ name: 'John Doe' })
}
Aggressive Addax

Jawaban yang mirip dengan “nextjs API contoh naskah”

Pertanyaan yang mirip dengan “nextjs API contoh naskah”

Lebih banyak jawaban terkait untuk “nextjs API contoh naskah” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya