如何从<input />发送带有离子请求的pdf文件

时间:2018-11-11 23:08:55

标签: typescript post request ionic3

PDF应该上传到服务器,我正在尝试

add(): void {
if (this.st == 1) return
if (this.name == "") return;
console.log(this.fil)
//
this.http.post('http://localhost:3000/', this.fil).subscribe(data => {
    console.log(data);
  },error => {
    console.log(error.status);
  });
}

但请求为空

0 个答案:

没有答案