在Flutter中使用HttpsCallable插件时,我很难将参数传递到我的云函数中。
我的云函数中的日志显示没有传递任何参数。
我的云功能index.js
// acts as an endpoint getter for Python Password Generator FastAPI
exports.getPassword = functions.https.onRequest((req, res) => {
const useSymbols = req.query.useSymbols;
const pwLength = req.query.pwdLength;
// BUILD URL STRING WITH PARAMS
const ROOT_URL = `http://34.72.115.208/password?pwd_length=${pwLength}&use_symbols=${useSymbols}`;
const debug = {
pwLenType: typeof pwLength,
pwLen: pwLength,
useSymbolsType: typeof useSymbols,
useSymbols: useSymbols,
};
console.log(req.query);
console.log(debug);
// let password: any; // password to be received
cors(req, res, () => {
http.get(ROOT_URL).then((response) => {
console.log(response.getBody());
return res.status(200).send(response.getBody());
})
.catch((err) => {
console.log(err);
return res.status(400).send(err);
});
// password = https.get(ROOT_URL);
// response.status(200).send(`password: ${password}`);
}); // .catch((err: any) => {
// response.status(500).send(`error: ${err}`);
// })
});
我确保不仅要记录我要查找的单个参数,还要记录整个查询。
我的飞镖文件:
Future<String> getPassword() async {
final HttpsCallable callable = new CloudFunctions()
.getHttpsCallable(functionName: 'getPassword')
..timeout = const Duration(seconds: 30);
try {
final HttpsCallableResult result = await callable.call(
<String, dynamic>{
"pwLength": 10,
"useSymbols": true,
},
);
print(result.data['password']);
return result.data['password'];
} on CloudFunctionsException catch (e) {
print('caught firebase functions exception');
print('Code: ${e.code}nmessage: ${e.message}ndetails: ${e.details}');
return '${e.details}';
} catch (e) {
print('caught generic exception');
print(e);
return 'caught generic exceptionn$e';
}
}
class DisplayPassword extends StatelessWidget {
final String pw = (_MyPasswordGenPageState().password == null)
? 'error'
: _MyPasswordGenPageState().password;
@override
Widget build(BuildContext context) {
return AlertDialog(
title: Text(pw),
);
}
}
我想传入请求的密码长度和一个布尔值,以标记是否需要符号。生成的密码应显示在Alert Widget中。
使用
import 'package:cloud_functions/cloud_functions.dart';
获取可调用函数的实例:
final HttpsCallable callable = CloudFunctions.instance.getHttpsCallable(
functionName: 'YOUR_CALLABLE_FUNCTION_NAME',
);
调用函数:
dynamic resp = await callable.call();
用参数调用函数:
dynamic resp = await callable.call(<String, dynamic>{
'YOUR_PARAMETER_NAME': 'YOUR_PARAMETER_VALUE',
});
您的客户端代码正试图调用一个可调用函数,但您的函数是不同类型的HTTP函数。它们不兼容-请务必阅读文档以了解它们的不同之处。
如果要使用客户端代码来调用函数,则需要按照可调用函数的说明进行操作,并使用onCall
而不是onRequest
来声明它。
我认为您最好在设备上本地处理密码检查。用户在创建密码时会立即收到,来自云功能的https调用可能会延迟,并且可能会导致加载"我们正在检查您的密码">
尝试req.body
const useSymbols = req.body.useSymbols;
const pwLength = req.body.pwdLength;
而不是查询