leancloud_storage 0.2.6 leancloud_storage: ^0.2.6 copied to clipboard
A new Flutter package project.
[0.2.6] - 版本更新 #
- 增加 LCObject 序列化和反序列化方法
String toString();
static LCObject parseObject(String str)
- 增加 LCUser 获取是否是匿名登录属性
bool get isAnonymous;
- 增加 LCQuery 接口
/// 不包含查询
LCQuery<T> whereNotContainedIn(String key, Iterable values);
/// 正则查询
LCQuery<T> whereMatches(String key, String regex, {String modifiers});
/// 关系查询
LCQuery<T> whereMatchesQuery(String key, LCQuery query)
[0.2.5] - 版本更新 #
- 支持 Flutter Storage SDK fetchAll 功能
- 增加子类化集合属性的单元测试
[0.2.4] - 版本更新 #
- 修复操作未赋值属性时的异常
[0.2.3] - 版本更新 #
- 增加 LCCaptchaClient 验证码相关接口
- 增加 LCSMSClient 短信相关接口
[0.2.1] - 版本更新 #
- 完善 API 文档
[0.1.4] - 版本更新 #
- 修复批量删除的 bug
- 修复地理坐标经度 key 的 bug
[0.1.3] - 版本更新 #
- 支持缓存查询(iOS/Android),用法如下:
// 初始化
LeanCloud.initialize( 'xxx', 'yyy', server: 'https://zzz.com', queryCache: new LCQueryCache());
// 查询
List<LCObject> list = await query.find(cachePolicy: CachePolicy.networkElseCache);
[0.1.2] - 版本更新 #
- 支持 iOS/Android 环境下保存登录用户数据
- 重构获取当前用户接口为异步方法
LCUser currentUser = await LCUser.getCurrent();
[0.1.1] - 版本更新 #
- 完善时间,时区相关实现
- 完善 Geo 相关接口和实现
- 支持正则查询
- 增加 User-Agent 统计
- 完善单元测试,覆盖了 79.9%