cloudbase_database

Creator: coderz1093

Last updated:

0 purchases

cloudbase_database Image
cloudbase_database Images

Languages

Categories

Add to Cart

Description:

cloudbase database

Cloudbase Database for Flutter #

腾讯云·云开发的 Flutter 插件,更多的云开发 Flutter 插件请见云开发文档。
安装 #
在 flutter 项目的 pubspec.yaml 文件的 dependencies 中添加
dependencies:
cloudbase_core: ^0.0.4
cloudbase_database: ^0.0.7
copied to clipboard
简单示例 #
import 'package:cloudbase_core/cloudbase_core.dart';
import 'package:cloudbase_auth/cloudbase_auth.dart';
import 'package:cloudbase_database/cloudbase_database.dart';

void main() async {
CloudBaseCore core = CloudBaseCore.init({'env': 'your-env-id'});

// 匿名登录
CloudBaseAuth auth = CloudBaseAuth(core);
CloudBaseAuthState authState = await auth.getAuthState();

if (authState == null) {
await auth.signInAnonymously();
}

// 数据库查询
CloudBaseDatabase database = CloudBaseDatabase(core);
String myOpenID = 'xxx';
database.collection('user').where({
'_openid': myOpenID
});
}
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.