我正在尝试学习Typescript中的一些知识。 因此,我用了一些旧代码进行转换,并最终了解了如何执行键入操作。
我到达了条件的一部分,angular.io中的示例非常肤浅,没有展示一些东西。
我尝试了几项无法正常运行的结果,因此在我用作基础的条件结构下面
this.valorParcela = Number(( this.totalCost / this.VendaProdutoVendaNParcelas).toFixed(2));
if ( this.i=0, this.VendaProdutoVendaNParcelas,this.i++) {
this.geraInputs+="<tr><td> <input class='parcela' type='text' name='parcela[]' value='"+this.valorParcela+"'>
<input type='date' value=''>
</td></tr>";
}
("table#parcelas tbody").html(this.geraInputs);
}
我希望结果是一些示例,文档或解释,它们可以帮助我使用运算符来理解条件结构的构造,并能够在模板中生成HTML代码。