1

我的测试页面使用 beta.0 进行路由,但没有使用 beta.1。Atom-typscript 在页面加载时没有显示错误并且控制台没有错误,但是锚选择没有链接颜色 - 它们有文本颜色。单击锚点时,会出现此控制台错误。

ERROR CONTEXT: angular2.min.js:17:5927

13:21:22.030 Object { element: <a>, componentElement: <residence-app>, context: Object, locals: Object, injector: Object } angular2.min.js:17:5927

13:21:22.038 Error: EXCEPTION: Error during evaluation of "click"
ORIGINAL EXCEPTION: TypeError: this.directive_0_0.onClick is not a function

相关代码为:

app.ts (boot.ts 文件对所有组件进行引导)

//various imports
@Component({
  selector: 'residence-app',
  templateUrl: "angular2-oPost/src/components/navigation/headerFooter.html",
  styleUrls: [ "angular2-oPost/src/commonStyles/headerFooter.css" ],
  directives: [ ROUTER_DIRECTIVES, Home, PostApartment4Rent ]
@RouteConfig( [
  new Route({ path: "/home", name: "Home", component: Home, useAsDefault: true }),
  new Route({ path: "/postApartment4Rent ",  name: "PostApartment4Rent", component: PostApartment4Rent })
] )
export class HeaderFooter { }

headerFooter.html

<header>
<!-- several divs-->
<a [routerLink]="['/Home']">Home</a>
<a [routerLink]="['/PostApartment4Rent']">Rent Apartment in hF</a>
</header> 
<div class="partialPage">
  <router-outlet></router-outlet>
</div>
<footer>
  <!-- several divs-->
</footer>

主页.ts

@Component({
  selector : "home",
  styleUrls: [ "angular2-oPost/src/commonStyles/headerFooter.css" ],
  templateUrl: "angular2-oPost/src/components/navigation/home.html",
  directives: [ RouterLink ]
})
export class Home { }

postApartment4Rent.ts - 与 home.ts 相同,除了 @Component 和 class 语句中的选择器

解决方法是什么?发行说明没有提到路由器的重大更改。

4

1 回答 1

2

这个错误仍然存​​在于 angular2.beta.7 中。这是由您可以在此处找到的相同错误引起的:https ://github.com/angular/angular/issues/6380

问题是由于使用 webpack 缩小了您的应用程序(使用 UglifyJS)引起的,您可以通过在 webpack.config.js 中删除类似于以下代码的内容来临时解决此错误

plugins: [
    new webpack.optimize.CommonsChunkPlugin('vendor', 'bundle.js'),
    new webpack.optimize.UglifyJsPlugin()
],

问题是您的应用程序无法投入生产,因为您的 bundle.js 太胖了,但您将能够开发您的应用程序;)

我检查了问题是否来自 UglifyJS 配置,但没有,我确认这是 Angular2 的问题。

如果我找到解决方法,我会回来帮助你,祝你好运;)

于 2016-02-23T18:04:34.040 回答