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 {
}
超级连接者:破解新互联时代的成功密码
伊桑•祖克曼(ETHAN ZUCKERMAN) / 林玮、张晨 / 浙江人民出版社 / 2018-8-1 / CNY 72.90
● 我们生活在一个互联互通的世界,我们需要辩证地看待某些事件,发现隐藏在背后的真相。着眼当下,看清彼此之间的联系,而非凭空幻想未来世界联系之紧密。数字世界主义要求我们承担起责任,让隐藏的联系变成现实。 ● 我们对世界的看法是局限的、不完整的、带有偏见的。如果我们想要改变从这个广阔的世界所获取的信息,我们需要做出结构性的改变。 ● 建立联系是一种新的力量。无论是在国家层面、企业层面还是个......一起来看看 《超级连接者:破解新互联时代的成功密码》 这本书的介绍吧!
