跳转到内容

中间件未返回响应。

MiddlewareNoDataOrNextCalled:确保你的中间件返回一个 Response 对象,可以直接返回,也可以通过调用 next 函数返回其 Response

当中间件没有返回任何数据或调用 next 函数时抛出。

例如

import {defineMiddleware} from "astro:middleware";
export const onRequest = defineMiddleware((context, _) => {
// doesn't return anything or call `next`
context.locals.someData = false;
});
贡献 社区 赞助