我使用Normalizr从不同的API端点获得相同的响应形状。
const post = new Schema('posts');
const posts = arrayOf('post');
const listResponse = [
{id: 1, text: 'post one'},
{id: 2, text: 'post two'},
];
normalize(listResponse, posts);
/*
{
entities: {
posts: {
1: {id: 1, text: 'post one'},
2: {id: 2, text: 'post two'}
}
},
result: [1, 2]
}
*/
const singleResponse = {id: 1, text: 'post one'};
normalize(singleResponse, post);
/*
{
entities: {
posts: {
1: {id: 1, text: 'post one'}
}
},
result: 1
}
*/

然后我想处理归一化的反应,无论它是怎么来的。
但问题是,对于单个项目,我得到result: 1
而不是数组result: [1]
,这会导致我后来的代码出现问题。
现在我必须手动将result
规范化为数组,但也许有更好的方法可以做到这一点?
答案 0 :(得分:6)
在我的应用程序中,我针对此案例使用了两种不同的操作,FETCH_POST
和FETCH_POSTS
。
但如果你有一些问题,可以使用一点点黑客:
const singleResponse = {id: 1, text: 'post one'};
normalize([singleResponse], posts);
当标准化单个帖子项目时,我们可以简单地将其包装到数组中并将其标准化为帖子数组。