将图像从React Native应用上传到php服务器

时间:2019-05-24 20:03:19

标签: php mysql react-native image-uploading

我有一个用react native开发的应用程序,我想允许用户将图像上传到服务器。因此,我想将图像存储在服务器中,并将图像路径插入sql数据库中。

使用以下功能,我将图像数据发送到upload.php

 move_uploaded_file($_FILES['photo']['tmp_name'], 'images/' . $_FILES['photo']['name']);

但是我真的很困,我不知道在upload.php中该怎么做 我在服务器端尝试了很多事情,但是我仍然坚持处理发送的数据。我无法将图像上传到服务器上。

我尝试过:

 move_uploaded_file($_FILES['photo']['uri'], 'images/' . $_FILES['photo']['name']);
$data = json_decode(file_get_contents("php://input"));
$file = $data->{"photo"};
 move_uploaded_file($file['uri'], 'images/' . $file['name']);
Different packages with different installation locations (and some shared components)

依此类推...

谢谢!

0 个答案:

没有答案