gpt4 book ai didi

angular - 绑定(bind)文本区域中的值

转载 作者:太空狗 更新时间:2023-10-29 16:59:57 25 4
gpt4 key购买 nike

我正在尝试在 Angular2 中进行最简单的双向绑定(bind)。我想在我的组件和它的模板之间共享一个变量。

我的模板是:

<textarea [(ngModel)]="currentQuery"></textarea>

我的组件是:

import { Component } from '@angular/core';
import { ViewChild } from '@angular/core';
import { OnInit } from '@angular/core';

@Component({
moduleId: module.id,
selector: 'vs-home',
templateUrl: 'home.component.html'
})

export class HomeComponent {
private currentQuery: string = '';
}

根据文档,这应该有效,但我得到:

Error: Uncaught (in promise): Error: Template parse errors:
Can't bind to 'ngModel' since it isn't a known property of 'textarea'. ("
<div class="query-bar-container">
<textarea [ERROR ->][(ngModel)]="currentQuery"></textarea>
<!-- <button type="button" class="btn btn-default" (click"): HomeComponent@2:15

最佳答案

@NgModule({
...
imports: [
/* BrowserModule or CommonModule */,
FormsModule /* or RectiveFormsModule */]
...
})

关于angular - 绑定(bind)文本区域中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39561181/

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