在这个应用程序中,我点击一张照片,要么是通过相机,要么是从图库上传,然后把它传递给一个提供商。我想将该映像上传到Firebase存储区,然后将其映像Url与其他字符串和double类型信息一起存储在一个实时数据库中。但我似乎不能这样做,因为数据似乎在图像url可以被处理之前就上传到了实时数据库中。图像仍然正确地上载在存储中。下面是我的Provider类的代码。
有关的方法有uploadPic()和addPlace()
import 'dart:io';
import 'dart:convert';
import 'package:path/path.dart' as Path;
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'package:firebase_storage/firebase_storage.dart';
import '../models/place.dart';
class MyPlaces with ChangeNotifier {
List<Place> _places = [];
List<Place> get places {
return [..._places];
}
Future<void> fetchAndSetPlaces() async {
const url = 'my firebase url';
try {
final response = await http.get(url);
final extractedData = json.decode(response.body) as Map<String,dynamic>;
final List<Place> loadedPlaces = [];
extractedData.forEach((id, data) {
loadedPlaces.add(Place(
id: id,
cropName: data['cropName'],
imageUrl: data['imageUrl'],
location: Location(
latitude: data['latitude'],
longitude: data['longitude'],
//address: data['address'],
),
));
_places = loadedPlaces;
notifyListeners();
});
} catch(error) {
throw error;
}
}
Future<void> addPlace(String cropName, File image, Location loc) async {
const url = 'my firebase url';
String imageUrl;
await uploadPic(image, imageUrl);
try {
final response = await http.post(url, body: json.encode({
'cropName' : cropName,
'imageUrl' : imageUrl,
'latitude' : loc.latitude,
'longitude' : loc.longitude,
}));
final newPlace = Place(
id: json.decode(response.body)['name'],
cropName: cropName,
imageUrl: imageUrl,
location: loc,
);
_places.add(newPlace);
notifyListeners();
} catch (error) {
throw error;
}
}
Place findPlaceById(String id) {
return _places.firstWhere((place) => place.id == id);
}
Future uploadPic(pickedImage, imageUrl) async {
StorageReference firebaseStorageRef = FirebaseStorage.instance.ref().child('chats/${Path.basename(pickedImage.path)}}');
StorageUploadTask uploadTask = firebaseStorageRef.putFile(pickedImage);
await uploadTask.onComplete;
print("File uploaded!");
firebaseStorageRef.getDownloadURL().then((fileUrl) {
imageUrl = fileUrl;
});
notifyListeners();
}
}
我正在submitForm()方法中的表单页中调用addplace()方法。
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../models/place.dart';
import '../providers/my_places.dart';
import '../widgets/image_input.dart';
import '../widgets/location_input.dart';
import '../widgets/custom_drawer.dart';
import '../screens/my_geo_tags_screen.dart';
class AddNewPlaceScreen extends StatefulWidget {
static const routeName = '/add_new_place_screen';
@override
_AddNewPlaceScreenState createState() => _AddNewPlaceScreenState();
}
class _AddNewPlaceScreenState extends State<AddNewPlaceScreen> {
Place currentPlace;
final _cropNameController = TextEditingController();
File _pickedImage;
Location _pickedLocation;
void selectImage(File image) {
setState(() {
_pickedImage = image;
});
}
void selectLocation(double lat, double long) {
_pickedLocation = Location(
latitude: lat,
longitude: long,
);
}
void _submitForm() {
if (_cropNameController.text == null || _pickedImage == null || _pickedLocation == null) {
return;
}
Provider.of<MyPlaces>(context).addPlace(_cropNameController.text, _pickedImage, _pickedLocation);
Navigator.of(context).pop();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Add new Geo Tag", style: Theme.of(context).textTheme.title),
iconTheme: IconThemeData(color: Colors.amber),
),
drawer: CustomDrawer(),
body: SingleChildScrollView(
child: Container(
padding: EdgeInsets.all(20),
child: Column(
children: <Widget>[
TextField(
style: TextStyle(
color: Theme.of(context).primaryColor,
),
decoration: InputDecoration(
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(5),
),
labelText: "Name of the crop",
labelStyle: TextStyle(
color: Theme.of(context).primaryColor,
),
),
controller: _cropNameController,
),
SizedBox(height: 15),
ImageInput(selectImage),
SizedBox(height: 15),
LocationInput(selectLocation),
],
),
),
),
floatingActionButton: FloatingActionButton(
backgroundColor: Theme.of(context).accentColor,
child: Icon(
Icons.save,
color: Theme.of(context).primaryColor,
),
onPressed: () {
_submitForm();
Navigator.of(context).pushReplacementNamed(MyGeoTagsScreen.routeName);
},
),
);
}
}
我认为您需要在future uploadpic
中等待firebaseStorageRef.getDownloadURL().然后((fileUrl){
。但是,我认为混合使用await和.then可能会导致问题。所以尝试删除.然后,只需执行以下语句imageUrl=await firebaseStorageRef.getDownloadURL();
我正在尝试将一个图像存储到FireBase数据库中,我很确定所有的代码都可以很好地获取imagelink,因为它不再像以前那样显示错误。然而现在,当我上传图片时,出现了一个新问题。这与存储异常有关,我猜它在实际从存储中提取imagelink并将其插入数据库时遇到了问题。下面是我认为出现问题的代码: 如果需要,这是我的整个代码: } 错误消息: 2020-06-02 13:54:22.594 346
我正在尝试上传图像到firebase,以及其他字符串和双数据类型。 我现在正在考虑两个选项,一个是上载imageUrl到firebase实时数据库,当我检索它时,我将检索一个imageUrl并将其转换为图像。 谢谢你的帮助!我很感激。
我正在寻找一种安全的方式来存储用户的敏感媒体像驾照图片。据我所知,没有办法从Firebase存储规则访问Firebase实时数据库,以查看用户是否被授权查看媒体。如果我错了就纠正我。文档中有一些允许某些用户访问介质的方法,但这对我来说并不可行,因为可能有多个用户将访问介质,并且他们的权限状态可能在将来更改。 null
问题内容: 我想将图像的下载URL放入Firebase数据库中。我可以将图像上传到存储中,但无法弄清楚如何将URL与其余的“帖子”一起放入数据库。 问题答案: 像这样组织您和func: 接下来,只需连接并保存到您的节点即可。 您也可以查看我有关上传数据并将URL保存到数据库的答案 希望能帮助到你
这是我的代码-
我正在使用以下方法来保存信息。 我已经删除了一些用于访问数据库的代码行。 这是日志猫的描述。 E/StorageException:已发生StorageException。发生未知错误,请检查HTTP结果代码和内部异常以获取服务器响应。代码:-13000 HttpResult:0 E/AndroidRuntime:FATAL EXCEPTION:Firebase Storage-Upload-1