我有一个用于获取数据的API。我需要一个Angular component
,它将在表单'@'
的任意位置键入input/text field
后显示这些数据。
需要您的好建议。
答案 0 :(得分:0)
例如,您可以使用keyup
事件获取密钥代码。
template: `
<input (keyup)="onKey($event)">
`
onKey(event: any) {
if (event.target.value === '@') {
// do some action, change visibility, and so on...
}
}
您可以在Angular文档中找到所有详细信息:https://angular.io/guide/user-input
答案 1 :(得分:0)
<input type="text" [ngModel]="mymodel (ngModelChange)="valuechange($event.target.value)" />
收听所有输入的模型更改事件。
app.component.ts
export class AppComponent {
name = 'Angular';
mymodel: any;
captureMode: boolean;
stringCapture: string;
constructor() {
this.stringCapture = "";
this.captureMode = false;
}
valuechange(event: any) {
if (this.captureMode == true) {
if (this.captureMode == true && event.keyCode >= 65 && event.keyCode <= 90) {
this.stringCapture += event.key;
// make your api call with stringCapture
}
this.captureMode = true;
}
if (event.keyCode == 50) {
this.captureMode = true;
this.stringCapture = ""
}
if (event.keyCode == 32) {
this.captureMode = false;
this.stringCapture = "";
}
}
}
所以我删除了spacebar
答案 2 :(得分:0)