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

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

是否可以通過(guò)來(lái)自 $_FILES 的 Angular 9 中的 http 請(qǐng)求訪問(wèn)上傳的文件?

是否可以通過(guò)來(lái)自 $_FILES 的 Angular 9 中的 http 請(qǐng)求訪問(wèn)上傳的文件?

PHP
UYOU 2023-04-28 17:19:29
我正在嘗試通過(guò) angular 9 中的 http 請(qǐng)求將文件上傳到 php 服務(wù)器,但服務(wù)器無(wú)法在 $_FILES 中接收上傳的文件。我寫(xiě)的代碼有點(diǎn)像:HTML:<input type="file"  (change)="detectFiles($event)" name="testFile" >PHP:<?php    header("Access-Control-Allow-Origin: *");     header('Access-Control-Allow-Credentials: true');    header("Access-Control-Allow-Methods: PUT, GET, POST, DELETE");    header("Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept");    echo json_encode($_FILES['testFile']['name']);?>打字稿:detectFiles(event) {   const file = event.target.files[0];   this.httpClient.post<any>('http://localhost/test/uploadFile.php', file )     .subscribe( (response) => { console.log('uploading is done: ' + response); },                 (error) => { console.log('ERR during the uploading: ' + error); }     );}當(dāng)我上傳文件時(shí),我收到以下消息: 上傳期間出錯(cuò):[object Object]。有沒(méi)有可能從服務(wù)器端的 $_FILES 到達(dá)上傳的文件?提前致謝。
查看完整描述

1 回答

?
慕仙森

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

將您的文件附加到Formdata并發(fā)送


detectFiles(event) {

   var formData = new FormData();

   formData.append("file", event.target.files[0]);  

   this.httpClient.post<any>('http://localhost/test/uploadFile.php', formData)

     .subscribe( (response) => { console.log('uploading is done: ' + response); },

                 (error) => { console.log('ERR during the uploading: ' + error); }  

   );

}


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

添加回答

舉報(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)