本文介绍了是否有可能使用JavaScript的ES5采用角度2而不是打字稿?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是不是需要学习打字原稿的角2?

Is it needed to learn TypeScript for Angular 2?

能否角2普通的JavaScript中使用?

Can Angular 2 be used with plain JavaScript ?

编辑:我已经看到了作为ES6,ES7,飞镖编译成的Ja​​vaScript语言来执行,但我还没有看到任何参考使用JavaScript的ES5直接

I've seen that the languages used as ES6, ES7, Dart compile to JavaScript to be executed, but I haven't seen any reference to use ES5 JavaScript directly.

推荐答案

是的,可以。

去阅读。 pressing在code例子 ES5 设置页会显示你经常ES5的JavaScript,为并列为打字稿。

Go read this guide. Pressing the ES5 tab on the code examples will show you regular ES5 JavaScript, as apposed to TypeScript.

借助是,出于显而易见的原因,虽然不完整。所以,你可能找不到尚未列出的ES5方法,其中一些也可能在发布前更改。

The API preview is, for obvious reasons, incomplete though. So you may not find the ES5 methods listed there yet, and some of it may change before release.

在ES5角2.0主要成分的电流的例子。

Current example of Angular 2.0 main component in ES5.

function AppComponent() {}

AppComponent.annotations = [
  new angular.ComponentAnnotation({
    selector: 'my-app'
  }),
  new angular.ViewAnnotation({
    template: '<h1>My first Angular 2 App</h1>'
  })
];

document.addEventListener('DOMContentLoaded', function() {
  angular.bootstrap(AppComponent);
});

这篇关于是否有可能使用JavaScript的ES5采用角度2而不是打字稿?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 13:56