json

a

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);
};

最后更新于

这有帮助吗?