/** [handleSubmit]表单提交数据函数 */
handleSubmit = (e)=>{
let self = this;
e.preventDefault();
this.props.form.validateFieldsAndScroll((err, values) => {
if(typeof values.consultationDate != "string"){
var consultationDate = values['consultationDate'].format('YYYY-MM-DD HH:mm:ss');
values['consultationDate']=consultationDate;
}
if (!err) {
this.addFollowUp(values);
}
});
}
/** [addFollowUp] 获取表单数据并传输到后台进行保存 */
addFollowUp = (formData)=>{
let followUpReplyDetails = [];
console.log("followUpReplyDetails",followUpReplyDetails)
formData.answerList.map((answer,index)=>{
let followUpReplyDetail = {
'replyid':this.props.data.id,
'deptcode': window.sessionStorage.getItem('deptid'),
'doctorid': window.sessionStorage.getItem('userid'),
'doctorname': window.sessionStorage.getItem('username'),
'creator': window.sessionStorage.getItem('userid'),
'updator': window.sessionStorage.getItem('userid'),
'questionname': this.state.symptomsData[index].questionname,
'questionid': this.state.symptomsData[index].questionid,
'answer': answer.vname?answer.vname:answer.answer,
'answerid': answer.valueid?answer.valueid:answer.answerid,
}
followUpReplyDetails.push(followUpReplyDetail)
})
let dataSource={
'id':this.props.data.id,
'followupid':this.props.data.followupid,
'orgid':this.props.data.orgid,
'registerid':this.props.data.registerid,
"doctorid": window.sessionStorage.getItem('userid'),
"doctorname": window.sessionStorage.getItem('username'),
"deptcode":this.props.data.deptcode,
"creator":window.sessionStorage.getItem('userid'),
"updator": window.sessionStorage.getItem('userid'),
"advice":formData.allergichistory,
"ispatient":formData.patientReport,
"writeTime":this.props.data.writeTime,
"useflag":this.props.data.useflag,
"ctstamp":this.props.data.ctstamp,
"followUpReplyDetails":followUpReplyDetails,
}
let params = {
url: 'BuFollowUpReplyReplyController/putData',
contentType: "application/json;charset=UTF-8",
type: 'PUT',
data: JSON.stringify(dataSource),
};
let than = this;
function callBack(res){
if(res.result){
notification.info({
message: "提示",
description: "提交成功",
placement: "bottomRight",
duration: 2
});
than.setState({disabled:true})
// than.props.setModule({module:''})
}else{
notification.error({
message: "提示",
description: "提交失败",
placement: "bottomRight",
duration: 2
});
}
};
ajaxGetResource(params, callBack);
}
react提交表单数据到后台保存后,页面为什么不显示数据
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
2条回答 默认 最新
- 崽崽的谷雨 2021-06-29 10:00关注
提交成功后,后台应该会返回值,如果不是后端返回,需要,前端记录下来,提交的值。然后接口提交成功后,拿到这个值。渲染就行,用标签渲染
let value={ //这个是提交的值 id:111, name:"00" } //渲染 <div>{{value.id}}</div> <div>{{value.name}}</div>
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 怎么让数码管亮的同时让led执行流水灯代码
- ¥20 SAP HANA SQL Script 。如何判断字段值包含某个字符串
- ¥85 cmd批处理参数如果含有双引号,该如何传入?
- ¥15 fx2n系列plc的自控成型机模拟
- ¥15 时间序列LSTM模型归回预测代码问题
- ¥50 使用CUDA如何高效的做并行化处理,是否可以多个分段同时进行匹配计算处理?目前数据传输速度有些慢,如何提高速度,使用gdrcopy是否可行?请给出具体意见。
- ¥15 基于STM32,电机驱动模块为L298N,四路运放电磁传感器,三轮智能小车电磁组电磁循迹(两个电机,一个万向轮),如何通过环岛的原理及完整代码
- ¥20 机器学习或深度学习问题?困扰了我一个世纪,晚来天欲雪,能饮一杯无?
- ¥15 c语言数据结构高铁订票系统
- ¥15 关于wkernell.PDB加载的问题,如何解决?(语言-c#|开发工具-vscode)