版本
语言

Features

You can get the value of a feature on the client-side using the config state service if it is allowed by the feature definition on the server-side.

This document explains how to get feature values in an Angular application. See the Features document to learn the feature system.

Before Use

To use the ConfigStateService, you must inject it in your class as a dependency. You do not have to provide the service explicitly, because it is already provided in root.

import { ConfigStateService } from '@abp/ng.core';

@Component({
  /* class metadata here */
})
class DemoComponent {
  constructor(private config: ConfigStateService) {}
}

How to Get a Specific Feature

You can use the getFeature method of ConfigStateService to get a specific feature from the configuration state. Here is an example:

// this.config is instance of ConfigStateService

const defaultLang = this.config.getFeature("Identity.TwoFactor");
// 'Optional'

You can then check the value of the feature to perform your logic. Please note that feature keys are case-sensitive.

本页对您有帮助吗?
请进行选择。
感谢您的宝贵意见!

请注意,虽然我们无法回复反馈意见,但我们的团队会根据您的意见改进体验。

在本文档中
Mastering ABP Framework Book
掌握 ABP 框架

本书将帮助你全面了解框架和现代Web应用程序开发技术。