json
對
new Response(JSON.stringify(someValue), {
headers: {
"Content-Type": "application/json; utf-8",
},
});
在載入器中普遍採用
import { json } from "react-router-dom";
const loader = async () => {
const data = getSomeData();
return json(data);
};
請參考