gpt4 book ai didi

javascript - 如何在 Angular 6 中将输入值传递给表单提交的函数?

转载 作者:行者123 更新时间:2023-12-03 15:18:19 25 4
gpt4 key购买 nike

所以我的代码在我按回车时有效(它成功运行 performSearch 函数),但是当我尝试通过点击我的提交按钮来运行该函数时,我得到了错误:

cannot read property error of undefined



这是我的代码:
<mat-form-field (ngSubmit)='performSearch($event)' color='primary' id='search-input' class='full-width' appearance='outline'>
<mat-label color='red'>Search</mat-label>
<input #searchBar matInput [(ngModel)]='searchValue' name='searchBar' [value]='searchValue' (keyup.enter)='performSearch($event)'>
</mat-form-field>

<button mat-raised-button color="primary" (click)='performSearch(searchBar.value)' id='submit-search' type='submit' for='searchBar'>Submit</button>

我想要的只是一种获取 #searchBar 的方法' 值并将其传递到 performSearch()单击按钮时触发的功能。我怎么做?

最佳答案

您在搜索栏中使用 var searchValue 进行双向绑定(bind)所以你只需要在点击提交时改变这个变量。
只需替换您的点击事件

(click)='performSearch(searchBar.value)' to
(click)='performSearch(searchValue)'

关于javascript - 如何在 Angular 6 中将输入值传递给表单提交的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50806610/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com