我的服务中有以下JSON:
[
{
"name":"Voter1",
"id":1,
"votingCard":{
"verificationCodes":[
"3I08jA",
"3x0eyE",
"2_i69I"
],
"votingCode":"7zCOelDnjfBm7TtFydc4QodgonG",
"finalizationCode":"jyYu",
"confirmationCode":"4ACfcpBVH45iAXqg7hJ0tbEe_tV"
}
},
.....
{
"id":5,
"name":"Voter5",
"votingCard":{
"verificationCodes":[
"2c9I9a",
"3bEeEa",
"1gPKx2"
],
"confirmationCode":"4Z7wNG35VR2UMO6-W-0aZVEhbLM",
"votingCode":"6YQ2x-c8LXJZF05gh3zTajU79ct",
"finalizationCode":"S0CY"
}
}
]
并希望将其标准化,所以投票卡列表和带有“votingCard”属性的选民列表以id引用投票卡。
import { normalize, schema } from 'normalizr';
const votingCard = new schema.Entity('votingCard');
const voter = new schema.Entity('voter', {
votingCard: votingCard,
});
const votersSchema = new schema.Array(voter);
const mutations = {
SOCKET_SYNCVOTERS: (state, data) => {
var input = JSON.parse(data);
const normalizedData = normalize(input, votersSchema);
console.log(normalizedData);
},
};
然而,我没有得到我想要的东西:
为什么会出现“未定义”?
答案 0 :(得分:1)
我认为你需要在votingCard实体的选项中指定一个'idAttribute' - 问题是normalizr在这些对象中找不到'id'字段所以它们都被选为id未定义和覆盖实体中的彼此。请参阅:https://github.com/paularmstrong/normalizr/blob/master/docs/api.md#schema