我正在尝试在反应应用程序中使用msw(版本 0.38.1)。它将对象数组转换为 JSON 字符串。
在下图中,config.d.category
可以看出是一个对象数组,但是 RTK 查询的结果data.category
被转换为一个字符串。
注意:RTK 查询没有问题,因为它在不模拟时从服务器返回预期的对象。
这是我的handlers.ts
文件:
import { rest } from 'msw'
const config = {
d: { category: [{ code: 'abcdef', title: 'A Title' }] },
}
console.log({ config })
export const handlers = [
rest.get(
'/DownloadConfiguration.asmx/GetWebConfig', (req, res, ctx) => res(ctx.json(config))
),
]
我怎样才能让它工作和/或诊断问题?
我看到这个问题似乎有些相关,但不是解决方案。