0
我試圖上傳一個圖像文件從反應原生到我的php服務器。我的問題是如何發佈文件對象到PHP。從反應本機上傳圖像文件到php服務器
我的javascript代碼:
storePicture(){
const file = {
uri: this.state.selected[0].uri,
name: this.state.selected[0].filename,
type: 'image/jpg'
}
fetch('http://localhost:8888/s3/index.php', {
method: 'POST',
body: JSON.stringify({
file: file
})
})
.then((response) => response.json())
.then((responseJson) => {
console.log(responseJson.status)
})
}
我的PHP代碼:
$data_back = json_decode(file_get_contents('php://input'));
$file = $data_back->{"file"};
預期的行爲是什麼?究竟發生了什麼? – user3080953