如何以这种格式发送数据我有这个模型,我想要这种格式



board12th :{
type : String,
},
rollNo12th :{
type : String,
},
subjectDetails12th :[{
subject1 :{ type : String},
marks :{type : String},
subject2 :{ type : String},
marks :{type : String},
subject3 :{ type : String},
marks :{type : String},
subject4 :{ type : String},
marks :{type : String},
subject5 :{ type : String},
marks :{type : String}
}],
totalMarks12th :{
type : String,
},

我想以这种格式发送数据我有所有的值

board12th :{
type : String,
},
rollNo12th :{
type : String,
},
subjectDetails12th :[{
subject1 :{ type : String},
marks :{type : String},
subject2 :{ type : String},
marks :{type : String},
subject3 :{ type : String},
marks :{type : String},
subject4 :{ type : String},
marks :{type : String},
subject5 :{ type : String},
marks :{type : String}
}],
totalMarks12th :{
type : String,
},

const payload = {
board12th : 'board12th value',
rollNo12th : '12',
subjectDetails12th :[{
subject1 :'science',
marks : '74',
subject2 :'account',
marks :'67,
subject3 :'statatistics',
marks :'78',
subject4 :'computer',
marks : '85',
subject5 : 'ss',
marks :'55'
}],
totalMarks12th : '251'
}

你可以将这个有效负载const传递给API有效负载

相关内容

  • 没有找到相关文章

最新更新