application / x-www-form-urlencoded在ionic和php之间

时间:2018-06-16 17:23:15

标签: javascript php angular ionic-framework

我正在创建一个Ionic应用程序,我正在使用PHP服务器,以便将使用我的移动设备拍摄的照片上传到我的服务器。 我正在使用它的PHP API已经在prod中开发并且在我的Web版本上没有任何问题但是当我尝试使用相同的POST请求时我遇到了问题。

我的离子代码:

upload_image():Observable<any>{
    //This is not the complete string.
    let _image64 = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGC";
    let params = `image64_str=${_image64}`;
    let headers = new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded');
    let httpOptions = {headers};
    return this.http.post<any>("http://API_URL",params,httpOptions);
}

我的PHP代码:

<?php
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Credentials: true");
header('Content-type: application/x-www-form-urlencoded');
$strimg = $_POST['image_str64'];
$image_str = substr($strimg ,strpos($strimg , ',')+1); //To avoid "data:image/jpeg;base64," from the 64string
$data = base64_decode($image_str);
//
//rest of code to check the format, directory and so one.
//

问题是,当我从Ionic函数调用此API时,我收到以下错误:

<b>Warning</b>:  imagecreatefromstring(): gd-jpeg: JPEG library reports unrecoverable error:  in <b>/API/test.php</b> on line <b>57</b>
<b>Warning</b>:  imagecreatefromstring(): Passed data is not in 'JPEG' format in <b>/API/test.php</b> on line <b>57</b>
<b>Warning</b>:  imagecreatefromstring(): Couldn't create GD Image Stream out of Data in <b>/API/test.php</b> on line <b>57</b>

“有趣的一点”是,如果我将从Ionic app获取的相同字符串base64Data“硬编码”到我的PHP文件中,则上传工作没有任何问题。 此外,我已经检查过,从我的Ionic应用程序发送的字符串与通过$ _POST ['varialbe']选项收到我的PHP文件的文本完全相同。

如果我的标题/功能中有任何错误或者我是否应该尝试使用其他方式上传我的文件,请告诉我吗?

提前谢谢

2 个答案:

答案 0 :(得分:0)

在您的Ionic + PHP应用程序中,尝试将Content-Type设置为image/jpeg

https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types

答案 1 :(得分:0)

最后,我决定更改我的API,以便使用其他选项,例如由ionic提供的上载文件。