Flutter client sdk of less-api
.
请前往 pub.dev 查看最新的 less_api_client 版本.
在 pubspec.yaml 中添加依赖:
dependencies:
less_api_client: ^0.0.4
通常IDE会自动执行更新依赖,或手动更新依赖:
flutter pub get
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()
pub run test test/db/*test.dart
TIP: 运行此测试之前,需要自行跑起一个可用的 less-api server 服务!!
pub run test test/http/*test.dart
# 删除数据的用例需要单独运行, 不然会影响其它操作的结果
pub run test test/http/remove.t.dart
pub run test test/**/*test.dart
# 删除数据的用例需要单独运行, 不然会影响其它操作的结果
pub run test test/http/remove.t.dart