我有一个应用程序,当用户注册时,个人资料照片URL
是必需的,虽然我注意到不是每个人都想在注册时添加个人资料照片。所以我希望当用户不添加个人资料照片时,默认的个人资料照片URL
会被添加并保存到Database
。下面是返回URL
的函数:
// add_a_file_to_aws_s3
Future<GetUrlResult> uploadImage(File? file, String? key) async {
try {
await Amplify.Storage.uploadFile(
local: file!,
key: key!,
onProgress: (progress) {
// ignore: avoid_print
print('Fraction completed: ${progress.getFractionCompleted()}');
},
);
GetUrlResult urlResult = await Amplify.Storage.getUrl(key: key);
return urlResult;
} on StorageException {
rethrow;
}
}
下面是在注册后向Database
添加用户信息的代码:
final result = await Amplify.Auth.signUp(
username: username.text.trim(),
password: password.text.trim(),
options: CognitoSignUpOptions(userAttributes: userAttributes),
);
GetUrlResult urlResult = await uploadImage(file, 'Profile Photos');
await userController.addUserData(
username.text,
password.text,
emailAddress.text,
urlResult.toString(),
int.parse('zero'),
int.parse('zero'),
birthday.text,
gender.text,
location.text,
phoneNumber.text,
);
setState(() {
isSignUpComplete = result.isSignUpComplete;
});
我创建了userController();
文件,在那里我创建了addUserData
函数。现在我需要帮助添加默认的个人资料照片URL
到Database
时,用户没有添加任何。谢谢
1条答案
按热度按时间tpxzln5u1#
只是做: