我正在尝试设置 SvelteKit 以在我的 CMS 中使用它。
我正在 api/query.js
中从我的 CMS 中获取数据,并在 api/query
中从 index.svelte
中获取数据。
效果很好,我可以获取整个数据,但是如果我在获取请求中包含正文,我会收到错误“无法读取未定义的属性‘拆分’”。代码:
// api/query.js
export async function post(req) {
const url = API_URL;
const auth = Buffer.from(`${API_USER_EMAIL}:${API_USER_PASSWORD}`).toString('base64');
const res = await fetch(url, {
method: 'POST',
headers: {
'Authorization': `Basic ${auth}`,
},
body: JSON.stringify(req.body),
});
const data = await res.json();
return {
status: data.code,
body: data
}
}
// index.svelte
export async function load({ fetch }) {
const res = await fetch('/api/query', {
method: 'POST',
// body: JSON.stringify({
// query: 'site.title',
// }),
});
const data = await res.json();
return {
status: data.status || 200,
props: data
}
}
注释掉的代码部分是导致错误的部分。如果我在 console.log(req.body)
中 api/query.js
它返回 undefined
。
有没有办法可以使用 Express.js 正文解析器?或者有没有其他方法可以解决这个错误?
答案 0 :(得分:0)
为两条路由设置 content-type
标头。
还要确保所有标题键都是小写的。
示例:
...
headers: {
'authorization': `Basic ${auth}`,
'content-type': 'application/json'
},
...