[Flutter Web] onCallでCloud Functionsの関数を呼び出す
6983 ワード
この記事は、【 可茂IT塾 Advent Calendar 2021 】の10日目の記事です。
FlutterWebのアプリ作成で実装したことを記事にしました。
誰かのお役に立てれば、幸いです。
準備
Firebaseの初期設定は、
を参考にしてください。
CloudFunctionsの初期設定
pubspec.yamlに
dependencies:
flutter:
sdk: flutter
firebase_core: "^0.7.0"
cloud_functions: "^0.9.0" //追加
を追加して、$ flutter pub get
index.html
にSDKを追加します。
<html>
...
<body>
<script src="https://www.gstatic.com/firebasejs/8.6.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.1/firebase-functions.js"></script> // 追加
</body>
</html>
実装
ElevatedButtonを押すと、関数が呼び出されるようになっています。
import 'package:cloud_functions/cloud_functions.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
class FunctionsPage extends StatelessWidget {
const FunctionsPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('テスト'),
),
body: Column(
children: [
const Text('テスト'),
ElevatedButton(
onPressed: () async {
final functions = FirebaseFunctions.instanceFor(
app: Firebase.app(), region: 'asia-northeast1');
final callable = functions.httpsCallable('FUNCTION NAME',
options: HttpsCallableOptions(
timeout: const Duration(seconds: 300)));
await callable();
},
child: const Text('テスト'),
),
],
),
);
}
}
上のコード例では、リージョンや、タイムアウトなども設定して関数を呼び出すようにしています。
デプロイの際にリージョンを指定していなければ、下の形でも動きます。
ElevatedButton(
onPressed: () async {
final functions = FirebaseFunctions.instance;
final callable = functions.httpsCallable('FUNCTION NAME');
await callable();
},
参考
Author And Source
この問題について([Flutter Web] onCallでCloud Functionsの関数を呼び出す), 我々は、より多くの情報をここで見つけました https://qiita.com/Hiiisan/items/6f249386d8ca50a63854著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .