这就是你如何使用JSON的方法:
import { NextResponse } from 'next/server';
export const GET = async () => {
return NextResponse.json({
status: 'OK',
});
};
这是你如何添加标题:
import { NextResponse } from 'next/server';
export const GET = async () => {
const response = NextResponse.next();
response.headers.set('X-Robots-Tag', 'noindex');
// ...
};
我如何将它们结合起来?
我试过response.json({})
,但不是这样的。
1条答案
按热度按时间wswtfjt71#
想明白了