콘텐츠로 이동

Astro.locals is not serializable

LocalsNotSerializable: The information stored in Astro.locals for the path “HREF” is not serializable. Make sure you store only serializable data. (E03034)

사용자가 locals에 직렬화할 수 없는 항목을 저장하려고 하면 개발 모드에서 발생합니다.

예시:

import {defineMiddleware} from "astro/middleware";
export const onRequest = defineMiddleware((context, next) => {
context.locals = {
foo() {
alert("Hello world!")
}
};
return next();
});
기여하기 커뮤니티 후원하기