标签: angular typescript angular7
对于nxsId以下,当this.nxsId为空时,我需要传递null
nxsId
this.nxsId
public nxsId: any; // declared as any nxsId: this.nxsId
答案 0 :(得分:0)
"nxsId": this.nxsId !== '' ? this.nxsId : null
在上述语句中,如果this.nxsId为空,则它将分配一个null值,否则将分配一个值this.nxsId。
null