gpt4 book ai didi

angular - 如何在angular2中使用指令

转载 作者:搜寻专家 更新时间:2023-10-30 21:17:55 25 4
gpt4 key购买 nike

我想在我的 app.component.html 中加载我的 navbar.html 因为我使用指令并遵循以下方法,

我的导航栏 html,

<p>Hi i am a pen</p>

我的 navbar.ts,

 import {Component,Directive, OnInit} from '@angular/core';
@Component({
selector: 'header-Navbar',
templateUrl: './app/navbar/navbar.html',
})
export class Navbar {}

我的 app.component.html,

    <header-Navbar></header-Navbar>

我的 app.component.ts,

import {Component,Directive, OnInit} from '@angular/core';
import { FormGroup, FormControl, FormBuilder, Validators } from '@angular/forms';
import { Http, Headers } from '@angular/http';
import { Navbar } from '../navbar/navbar';
import {PathLocationStrategy, LocationStrategy, Location} from '@angular/common';
import { Config } from '../headers';
@Component({
selector: 'my-app',
directives : [Navbar],---->Saying type error
templateUrl: './app/components/app.component.html',
providers: [Config]
})

我的错误,

   'header-Navbar' is not a known element:
1. If 'header-Navbar' is an Angular component, then verify that it is part of this module.
2. If 'header-Navbar' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schemas' of this component to suppress this message. ("
[ERROR ->]<header-Navbar></header-Navbar>

这是我的情况,我不确定如何解决它,任何人都可以建议我帮忙。谢谢。

最佳答案

@Component() 中的

directives 已经消失了一段时间。

现在他们应该在

@NgModule({
declarations: [NavBar]
...
}
export class AppModule {}
// or
export class MyOtherModule {}

另见

关于angular - 如何在angular2中使用指令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40147237/

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