gpt4 book ai didi

angular - Typescript 使用 Angular 2 组件抛出 Declaration Expected 错误

转载 作者:太空狗 更新时间:2023-10-29 16:54:06 24 4
gpt4 key购买 nike

我使用 typescript 构建了一个 Angular 2 应用程序,我尝试创建新的组件调用 sidekik.component.ts 并像这样导入到 app.component.ts。

app.component.ts

import {Component} from 'angular2/core';
import {SideKikComponent} from './classes/sidekik.component';

interface Hero {
id: number;
name: string;
}

@Component({
selector: 'my-app',
directives:[
SideKikComponent,
],
templateUrl:'app/views/heros.html',
styleUrls: ['app/css/site.css']
})

export class AppComponent {
public title = 'Tour of Heroes';
public heroes =HEROS;
public selectedHero: Hero;

onSelect(hero: Hero) {
this.selectedHero = hero;
}
}

var HEROS: Hero[] =[
{"id":1,"name":"SuperMan"},
{"id":2,"name":"Captain America"},
{"id":3,"name":"Thor"},
{"id":4,"name":"Iorn Man"},
{"id":5,"name":"Ant Man"}
];

sidekik.component.ts

import {Component, View} from 'angular2/core';

@Component({
selector:'sidekik',
events:['hit'],
properties:['define'],
template: `
<sidekik (click) = "hit(define)"></sidekik>
`,

});

export class SideKikComponent{
hit(define:string){
console.log(define);
}
}

然后我运行它显示的 npm start

rumes@rumes-HP-ProBook-4530s:/var/www/html/angular2ts$ tsc --version
message TS6029: Version 1.7.5
rumes@rumes-HP-ProBook-4530s:/var/www/html/angular2ts$ npm start

> angular2ts@1.0.0 start /var/www/html/angular2ts
> concurrent "npm run tsc:w" "npm run lite"

[0]
[0] > angular2ts@1.0.0 tsc:w /var/www/html/angular2ts
[0] > tsc -w
[0]
[1]
[1] > angular2ts@1.0.0 lite /var/www/html/angular2ts
[1] > lite-server
[1]
[1] [BS] Access URLs:
[1] ------------------------------------
[1] Local: http://localhost:3000
[1] External: http://192.168.1.7:3000
[1] ------------------------------------
[1] UI: http://localhost:3001
[1] UI External: http://192.168.1.7:3001
[1] ------------------------------------
[1] [BS] Serving files from: ./
[1] [BS] Watching files...
[0] app/classes/sidekik.component.ts(11,3): error TS1146: Declaration expected.
[1] 15.12.17 16:04:28 304 GET /./index.html (Unknown - 29ms)
[0] 4:04:28 PM - Compilation complete. Watching for file changes.
[1] 15.12.17 16:04:28 304 GET /node_modules/angular2/bundles/angular2-polyfills.js (Unknown - 310ms)
[1] 15.12.17 16:04:28 304 GET /node_modules/systemjs/dist/system.src.js (Unknown - 310ms)
[1] 15.12.17 16:04:28 304 GET /node_modules/rxjs/bundles/Rx.js (Unknown - 310ms)
[1] 15.12.17 16:04:28 304 GET /node_modules/angular2/bundles/angular2.dev.js (Unknown - 310ms)
[1] [BS] File changed: app/classes/sidekik.component.js
[1] [BS] File changed: app/app.component.js
[1] [BS] File changed: app/boot.js
[1] 15.12.17 16:04:29 200 GET /app/boot.js (Unknown - 40ms)
[1] 15.12.17 16:04:30 200 GET /app/app.component.js (Unknown - 92ms)
[1] 15.12.17 16:04:30 200 GET /app/classes/sidekik.component.js (Unknown - 75ms)
[1] 15.12.17 16:04:31 304 GET /app/views/heros.html (Unknown - 227ms)
[1] 15.12.17 16:04:31 404 GET /favicon.ico (Unknown - 229ms)

谁能帮我解决这个问题?

最佳答案

我有同样的问题(Typescript Declaration expected emitted on ts compilation),尽管它也表现为 Angular 在浏览器中抛出的异常:

在 [Errant Module] 上找不到指令注释

这对我有用:

删除 @Component(); (sidekik.component.ts) 末尾的分号

一个简单的解释是装饰器是返回一个函数的表达式。也就是说,装饰器不是语句。语句告诉编译器做事,并且需要分号(或换行)来停止。表达式只是返回值。

所以装饰器不能以分号结尾,因为它们不是语句,而且因为如果可以,那将使编写 JS 引擎的人的生活更加艰难(这是一个猜测)。

您可以了解有关装饰器的更多信息 here .

关于angular - Typescript 使用 Angular 2 组件抛出 Declaration Expected 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34332720/

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