gpt4 book ai didi

angular - 如何在 Angular 2 中绑定(bind) HTML 中组件的静态变量?

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

我想在 HTML 页面中使用组件的静态变量。如何将组件的静态变量与 Angular 2 中的 HTML 元素绑定(bind)?

import { Component, OnInit } from '@angular/core';
import { Observable } from 'rxjs/Rx';
@Component({
moduleId: module.id,
selector: 'url',
templateUrl: 'url.component.html',
styleUrls: ['url.component.css']
})
export class UrlComponent {

static urlArray;
constructor() {
UrlComponent.urlArray=" Inside Contructor"
}
}
<div>
url works!
{{urlArray}}
</div >

最佳答案

组件模板中绑定(bind)表达式的范围是组件类实例。

您不能直接引用全局变量或静态变量。

作为解决方法,您可以向组件类添加一个 getter

export class UrlComponent {

static urlArray;
constructor() {
UrlComponent.urlArray = "Inside Contructor";
}

get staticUrlArray() {
return UrlComponent.urlArray;
}

}

并像这样使用它:

<div>
url works! {{staticUrlArray}}
</div>

关于angular - 如何在 Angular 2 中绑定(bind) HTML 中组件的静态变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39193538/

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