NativeScript 表单插件 Azure-Mobile-Basic
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: Android
- 软件首页: https://github.com/alexziskind1/NativeScript-Azure-Mobile-Services-Module-Basic
软件介绍
Azure-Mobile-Basic 是 NativeScript 模块,通过 Azure Mobile Services 提供基础表单数据 GET 功能。
创建:
// viewmodel.js var client = new azuremobile.MobileServiceClient( "https://<Your Mobile Service URL>", "<Your mobile service application key>" );
调用:
var itemArr = [];
client.getTableItems('<tableName>', '<dataColumnName>', itemArr)
.then(function(){
for (var i = 0; i < itemArr.length; ++i) {
tasks.push(itemArr[i]);
}
});Effective JavaScript
David Herman / Addison-Wesley Professional / 2012-12-6 / USD 39.99
"It's uncommon to have a programming language wonk who can speak in such comfortable and friendly language as David does. His walk through the syntax and semantics of JavaScript is both charming and h......一起来看看 《Effective JavaScript》 这本书的介绍吧!
