Use version 2.x for the babel 5 and version 3.x for the babel 6
npm install angular-es6
You can find whole example project in the example directory.
export default class NiceDirective {
static $inject = ['$http'];
constructor($http) {
this.$http = $http;
this.template = '<div>{{computeName('NICE')}}</div>';
this.restrict = 'E';
this.scope = {
name: '=',
};
}
link(scope) {
this.scope = scope;
scope.computeName = (suffix) => this.computeName(suffix);
}
computeName(suffix = '') {
const { $http, scope } = this;
return 'Mr.' + scope.name + ' ' + suffix;
}
}
export default class MainController {
static $inject = ['$scope', '$http'];
constructor($scope, $http) {
this.$http = $http;
$scope.doThis = () => this.doThis();
}
doThis() {
const { $http } = this;
...
}
}
As you can see in the examples above. You need to store injected objects somehow.There is a better solution. You can extend your class with class named Inject and then you can use variable named this.$inject.
In next example is called function doThis from the constructor.You can use this.$inject because this object was initialized by Inject constructor.
Do not forget to use (...args). Inject class need to get all injected objects.
import { Inject } from 'angular-es6';
export default class MainController extends Inject {
static $inject = ['$http'];
constructor(...args) {
super(...args);
this.doThis();
}
doThis() {
const { $http } = this.$inject;
}
}
You can use variables from the link function anywhere in your directive code.This feature is available without extending Inject class. Here is small example
export default class NiceDirective {
static $inject = ['$http'];
constructor($http) {
this.$http = $http;
this.template = '<div>{{computeName('NICE')}}</div>';
this.restrict = 'E';
this.scope = {
name: '=',
};
}
link(scope) {
scope.computeName = (suffix) => this.computeName(suffix);
}
computeName(suffix = '') {
const { scope, element } = this.link.$inject;
element.text('Mr.' + scope.name + ' ' + suffix);
}
}
Each directory need to have file index.js with content like this:
import { load } from 'angular-es6';
const MODULE_NAME = 'myProject.directives';
load.directives(require.context('./', true, /.*\.js$/), MODULE_NAME);
export default MODULE_NAME;
More examples you can find in the example directory.
Pull requests are welcome
npm run build
npm run dev
Angular 是一款十分流行且好用的 Web 前端框架,目前由 Google 维护。这个条目收录的是 Angular 2 及其后面的版本。由于官方已将 Angular 2 和之前的版本 Angular.js 分开维护(两者的 GitHub 地址和项目主页皆不相同),所以就有了这个页面。传送门:Angular.js 特性 跨平台 渐进式 Web 应用 借助现代化 Web 平台的力量,交付 app
generator-angular-webpack-es6 Yeoman generator for AngularJS + Webpack with ES6 and SASS. Latest Webpack with Tree Shaking feature enabled Babel 6 with ES2017 features included Perfectly compatible wi
即将到来的Angular 2框架是使用TypeScript开发的。 因此Angular和TypeScript一起使用非常简单方便。 Angular团队也在其文档里把TypeScript视为一等公民。 正因为这样,你总是可以在Angular 2官网(或Angular 2官网中文版)里查看到最新的结合使用Angular和TypeScript的参考文档。 在这里查看快速上手指南,现在就开始学习吧!
从头开始创建项目 lint你的代码 运行您的单元测试和端到端测试。 Angular 2 CLI目前只在TypeScript中生成框架,稍后还会有其他版本。
这小节内容是译者加的,因为我认为对于新手而言,学习一个框架是有成本的,特别是对于一个不算简单的技术来说,我希望这篇教程是对新手友好的,所以我首先要让你放心的将时间和精力投入到Angular2 中。那我们先不谈技术细节,先用数据说话。 这里我多说一句,最近看一些文章中谷歌趋势截图,大都没有把范围限定在“编程”上。图中可以看出Vue2非常少,所以在下面比较中不再单独统计。 教程数量 这里我选取的主要是
我们已经在Highcharts Configuration Syntax一章中看到了用于绘制图表的配置 。 下面给出角度计图表的示例。 配置 (Configurations) 现在让我们看一下所采取的其他配置/步骤。 chart.type 将图表类型配置为基于计量。 将类型设置为“规格”。 var chart = { type: 'guage' }; pane 此类型仅适用于极坐标图和角度