我有 editPop up ,我在弹出窗口中编辑了表单字段。同时显示背景表格。在该格式中,我在 editPop 中输入的内容在提交之前以背景形式显示。如何在保存功能之前防止这种情况。
我需要在popUp中编辑后才保存,而不是在popUp中进行编辑。
我想这是因为c.cName
引起的双向绑定。我怎样才能克服这个问题。
请帮忙。 我在这里分享我的HTML和TS代码。
HTML代码
<md-card class="col-lg-12 col-md-12 col-sm-12 col-xs-12" *ngFor="let c of cL ">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4">
{{c.cName}}
</div>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-2" style="text-align:right;padding-right: 0px;">
<button class="iconBtn" (click)="openC(c)">
<md-icon svgIcon="edit" style="color: rgba(0,0,0,0.54);height: 17px;width: 17px;"></md-icon></button>
</div>
</md-card>
修改按钮HTML
<div class="modal-body row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<md-input-container style='width:100%'>
<input type="text" name="cName" mdInput [(ngModel)]="c.cName" placeholder="c" required>
</md-input-container>
</div>
</div>
保存按钮HTML
<div layout-align="end center" layout="row">
<button md-raised-button class="md-raised color-white" (click)="newC(c)" [disabled]="!cForm.form.valid" style="width: 46%;margin: 10px 5px;">Save</button>
</div>
Ts代码:
openC(c) {
if(c) {
this.msg = "edit";
this.c = c;
this.addC.show();
}
}
newC(c) {
if(c._id) {
this.ApiService
.editC(c,c._id)
.subscribe(
cs => {
this.toasterService.pop('success');
this.addC.hide();
},);
}
this.ApiService
.getC()
.subscribe(
cs => {
this.cs = cs.map(function(c) {
return {"value":c._id,"label":c.cName};
})
this.toasterService.pop('success');
this.cL = cs;
},
error => {
//console.log(error);
});
}
答案 0 :(得分:2)
添加到上面的答案你可以这样做
在HTML中
<md-input-container style='width:100%'>
<input type="text" name="cName"
mdInput #updatedC [value]="c.cName" placeholder="c" required>
</md-input-container>
IN TS
update(updateC,c) {
c.cName:updateProject.value,
this.ApiService
.editc(C,c)
.subscribe(
c => {
this.toasterService.pop('success');
this.editC.hide();
this.ApiService
.getC(this.c._id)
.subscribe(
c =>{
this.cL = c;
},
error => {
//console.log(error);
});
答案 1 :(得分:1)
而不是
<input type="text" name="cName" mdInput [(ngModel)]="c.cName" placeholder="c" required>
做的:
<input type="text" #updated name="cName" mdInput [value]="c.cName" placeholder="c" required">
也改为:
<md-card class="col-lg-12 col-md-12 col-sm-12 col-xs-12" *ngFor="let c of cL; let i = index">
和
<button md-raised-button class="md-raised color-white" (click)="updateValue(i, updated.value)" [disabled]="!cForm.form.valid" style="width: 46%;margin: 10px 5px;">Save</button>
并在您的组件中:
updateValue(id, newValue){
this.cL[id].cName = newValue;
}
希望这有效!