less_api_client

Last updated:

0 purchases

less_api_client Image
less_api_client Images
Add to Cart

Description:

less api client

介绍 #
Flutter client sdk of less-api.
安装 #
请前往 pub.dev 查看最新的 less_api_client 版本.
在 pubspec.yaml 中添加依赖:
dependencies:
less_api_client: ^0.0.4

copied to clipboard
通常IDE会自动执行更新依赖,或手动更新依赖:
flutter pub get
copied to clipboard
使用示例 #
import 'package:less_api_client/cloud.dart' ;

final cloud = new Cloud(entryUrl: 'http://localhost:8080/entry', getAccessToken: () => getToken(),);

final db = cloud.database();


// query documents
final result = await db.collection('categories').get()

// query with options
final articles = await db.collection('articles')
.where({})
.orderBy({"createdAt": 'asc'})
.offset(0)
.limit(20)
.get()

// count documents
final total = await db.collection('articles')
.where({ "createdBy": 123})
.count()

// update document
final updated = await db.collection('articles')
.where({"id": 1})
.update({
"title": 'new-title'
})

// add a document
final created = await db.collection('articles').add({
"title": "less api database",
"content": 'less api more life',
"createdAt": Date.now()
})

// delete a document
final removed = await db.collection('articles')
.where({ "id": 1 })
.remove()
copied to clipboard
运行测试 #
unit test
pub run test test/db/*test.dart
copied to clipboard
http test

TIP: 运行此测试之前,需要自行跑起一个可用的 less-api server 服务!!

pub run test test/http/*test.dart

# 删除数据的用例需要单独运行, 不然会影响其它操作的结果
pub run test test/http/remove.t.dart
copied to clipboard
all tests
pub run test test/**/*test.dart

# 删除数据的用例需要单独运行, 不然会影响其它操作的结果
pub run test test/http/remove.t.dart
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.