阿贾克斯上载从浏览器的文件到FTP服务器浏览器、服务器、文件、阿贾克斯

2023-09-10 14:32:30 作者:灬涵寶孭╰→

是否有可能使用AJAX uplaod从浏览器的文件到FTP服务器?

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

推荐答案

没有。浏览器没有提供API,允许从JavaScript写的FTP。

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

您可以文件发布到一个HTTP终点,然后使用服务器端code把它推到你的FTP服务器。

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