通过ngModel传递插值

时间:2018-09-06 04:01:53

标签: html angular

<input [(ngModel)]="newVariablesAttribute.Steps" 
class="form-control" 
type="text" readonly 
name="{{newVariablesAttribute.Steps}}">
{{stepname}}

我想使用ngModel传递步骤名(我可以使用插值在前端显示它)。

但是它不起作用。

enter image description here

2 个答案:

答案 0 :(得分:0)

由于步骤名​​已在用户界面中呈现,因此您可以像这样将其直接传递给ngModel-

<input [(ngModel)]="stepname" 
        class="form-control" 
        type="text" readonly 
        name="{{newVariablesAttribute.Steps}}">
{{stepname}}

(我猜是newVariablesAttribute。步骤是一些对象数组。)

答案 1 :(得分:0)

找不到您的代码有任何问题。步骤可能未定义

组件

export class SomeComponent {
newVariablesAttribute = {
    Steps: 'step'
  };

  stepname = 'abc';
}

html:

<input [(ngModel)]="newVariablesAttribute.Steps" class="form-control" type="text" readonly name="{{newVariablesAttribute.Steps}}">{{stepname}}

O / P

enter image description here