gpt4 book ai didi

javascript - 如何使用angular material api服务?

转载 作者:行者123 更新时间:2023-12-04 00:32:52 26 4
gpt4 key购买 nike

我是 Angular 世界的初学者,我正在使用 Angular Material 的“排序标题”组件,在 API 选项卡(https://material.angular.io/components/sort/api)上有一个叫做服务的东西,我想使用它们,但我不知道了解如何使用它。

例如:

在“排序 header ”或 ( https://material.angular.io/components/sort/api ) 的 API 选项卡上

我想使用“MatSortHeaderIntl”服务,它有一些属性,例如 - sortDescriptionLabel

所以请告诉我如何使用“MatSortHeaderIntl”服务的“sortDescriptionLabel”属性。

谢谢。

最佳答案

您需要导入,并将其提供给您的模块

import {MatSortHeaderIntl} from '@angular/material';

@NgModule({
imports: [
...
],
entryComponents: [..],
declarations: [...],
bootstrap: [...],
providers: [MatSortHeaderIntl]
})
export class AppModule {}

然后在你想使用的任何组件中,实例化它

constructor( private matSortService: MatSortHeaderIntl) {}

你可以通过作用域来调用它

this.matSortService.<method>

I setup an example of Integrated MatSortHeaderIntl Service

关于javascript - 如何使用angular material api服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48403520/

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