Ajax upload a file from browser to FTP server

后端 未结 1 458
青春惊慌失措
青春惊慌失措 2021-01-21 04:14

Is it possible to uplaod a file from browser to FTP server using ajax?

1条回答
  •  说谎
    说谎 (楼主)
    2021-01-21 04:56

    No. Browsers provide no APIs that allow writing to FTP from JavaScript.

    You could post the file to an HTTP end point and then use server side code to push it to your FTP server.

    0 讨论(0)
提交回复
热议问题