NativeScript 插件 nativescript-observable-subscribe
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: Android
- 软件首页: https://github.com/alexziskind1/nativescript-observable-subscribe
软件介绍
nativescript-observable-subscribe 是一个能添加订阅功能到 observables 的 NativeScript 模块。
使用:
// viewmodel.js
...
var mainViewModel = new HelloWorldModel();
var counterPropName = 'counter';
mainViewModel.subscribe(counterPropName, function(args){
if (this.get(counterPropName) <= 0) {
this.set(messagePropName, "Hoorraaay! You unlocked the NativeScript clicker achievement!");
}
else {
this.set(messagePropName, this.get(counterPropName) + " taps left");
}
}, mainViewModel);
exports.mainViewModel = mainViewModel;Sexy Web Design
Elliot Stocks / SitePoint / 2009-03-28 / $39.95
Description A guide to building usable, aesthetically pleasing interfaces for web sites and web applications by applying timeless principles of user-centered design. This book focuses on practical ......一起来看看 《Sexy Web Design》 这本书的介绍吧!
