第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在離子應(yīng)用程序中從計(jì)算機(jī)中選擇圖像以將其提供給服務(wù)器

在離子應(yīng)用程序中從計(jì)算機(jī)中選擇圖像以將其提供給服務(wù)器

PHP
夢(mèng)里花落0921 2023-04-28 15:28:04
我的離子應(yīng)用程序有時(shí)在瀏覽器中使用,我需要上傳一些圖像。我已經(jīng)實(shí)現(xiàn)了一個(gè)代碼來(lái)選擇我的文件,然后我有一個(gè)formData類型可以放入我的圖像。我正在嘗試使用發(fā)布請(qǐng)求將我的文件上傳到服務(wù)器,但我不知道該怎么做。當(dāng)我在我的 php 代碼中收到我的文件時(shí),我將它插入到我的數(shù)據(jù)庫(kù)中,我的數(shù)據(jù)庫(kù)中有一個(gè) blob 文件,但我認(rèn)為它不是圖像,它太小了......html文件:  <input  style="display: none"  type="file" (change)="onFileChanged($event)"  #fileInput><button (click)="fileInput.click()">Select File</button><button (click)="onUpload()">Upload!</button>文件:onFileChanged(event) {    this.selectedFile = <File>event.target.files[0];    console.log(this.selectedFile);  }  onUpload() {    // upload code goes here      // this.http is the injected HttpClient  let uploadData = new FormData();  uploadData.append('file', this.selectedFile, this.selectedFile.name);  console.log(this.selectedFile);   this.http.post(this.server + 'saveExo.php', this.selectedFile)     .subscribe(resData => {         console.log(resData);     });  }PHP 文件:<?phpheader('Access-Control-Allow-Origin: *');header('Access-Control-Allow-Credentials: true');header('Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE');header('Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept, Authorization');header('Content-Type: application/json; charset=UTF-8');include "db.php";$postjson = json_decode(file_get_contents('php://input'), true);$today = date('Y-m-d');if ( isset( $_POST) ) {    $result = json_encode(array('receive' => 'ok'));    $query = mysqli_query($mysqli, "INSERT INTO EXO SET     image = '$_POST'");    echo $result;} else {    $result = json_encode(array('receive' => 'nothing'));    echo $result;}?>這是我在數(shù)據(jù)庫(kù)中得到的:感謝您的幫助,我認(rèn)為將我的圖像保存在我的數(shù)據(jù)庫(kù)中是錯(cuò)誤的方式......
查看完整描述

1 回答

?
呼如林

TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超3個(gè)贊

我的解決方案是在客戶端使用 base64 將您的圖像轉(zhuǎn)換為base64?,然后將其存儲(chǔ)在服務(wù)器上。要再次查看,請(qǐng)將 base64 發(fā)送到客戶端并使用 base64 插件再次轉(zhuǎn)換。



查看完整回答
反對(duì) 回復(fù) 2023-04-28
  • 1 回答
  • 0 關(guān)注
  • 139 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)