代码之家  ›  专栏  ›  技术社区  ›  liskior

如何从<input>发送pdf文件,并在ionic中进行post请求

  •  0
  • liskior  · 技术社区  · 6 年前

    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 回复  |  直到 6 年前