我怎样才能在角4中使用点击
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我怎样才能在角4中使用点击相关的知识,希望对你有一定的参考价值。
<input type ="text" name="something" id="something"required (click)="saveData()>
我有这样的输入字段,如果没有所需的错误那么只有点击鼠标事件应该工作(调用)。
我怎样才能做到这一点。?我是棱角分明的新人
我想要这样的东西:
<input type ="text" name="something" id="something"required *ngIf="something.errors == null (click)="saveData() " >
答案
你可以这样做:
(click)="something.errors == null ? saveData() : false"
或者@ @ PankajParkar的评论
(click)="something.errors?.length && saveData()"
以上是关于我怎样才能在角4中使用点击的主要内容,如果未能解决你的问题,请参考以下文章