ng-classy
- 授权协议: 未知
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/eaze/ng-classy
- 官方下载: https://github.com/eaze/ng-classy
软件介绍
ng-classy 可以帮助你更好的使用 AngularJS 1 和 ES6+。
安装:
npm install ng-classy
API 使用:
import classy from 'ng-classy';
/*
* # classy.app
* The angular module instance that your whole app shares.
* Use it for things like angular config, constants, etc: `classy.app.config(() => {})`
*/
classy.app;
/*
* # @classy.Service()
* Registers 'MyService' as an injectable service on your app.
*/
@classy.Service()
class MyService {
}
/*
* # @classy.Component(options)
* Registers `<my-component>` as an element directive.
* Pass in options that map to a directive definition object.
* Has a shortcut field, `bind`, that maps to `bindToController`.
* `options` defaults to the following in this case:
* {
* restrict: 'E',
* scope: {},
* bindToController: options.bind || {},
* controllerAs: 'vm',
* controller: MyComponent
* }
*/
@classy.Component({
bind: {
color: '='
},
template: 'some template with a binding to color {{vm.color}}'
})
class MyComponent {
}
/*
* # @classy.State(name, options)
* Must be called after `@classy.Component()` on a class.
* Registers a new state with the the given name and state options.
* The template will default to instantiating the given component with the url parameters as attributes.
* See the example at the beginning of the README.
*/
@classy.Component({
bind: {
someParam: '='
},
template: 'we have a parameter, {{vm.someParam}}'
}
})
@classy.State('myState', {
url: 'url/:someParam'
})
class SomeComponent {
}
Head First JavaScript程序设计
[美]Eric T. Freeman、[美] Elisabeth Robson / 袁国忠 / 人民邮电出版社 / 2017-9 / 129.00 元
本书语言和版式活泼,内容讲解深入浅出,是难得的JavaScript入门书。本书内容涵盖JavaScript的基本知识以及对象、函数和浏览器文档对象模型等高阶主题。书中配备了大量有趣的实例、图示和练习,让读者轻轻松松掌握JavaScript。一起来看看 《Head First JavaScript程序设计》 这本书的介绍吧!
