Implementing ftp using Javascript

后端 未结 5 1078
故里飘歌
故里飘歌 2021-01-12 18:46

I dont understand why cant javascript make ftp calls?. Why do we have to make such a request using server?

Even Browsers have ability to authenticate and browse a ft

5条回答
  •  执笔经年
    2021-01-12 19:03

    Ok, answering my own question here.

    I went through Mozilla docs on XMLHTTPRequest. It specifically says -

    Despite its name, XMLHttpRequest can be used to retrieve any type of data, not just XML, and it supports protocols other than HTTP (including file and ftp).

    So, I am satisfied with this. JavaScript can make calls to ftp using this.

提交回复
热议问题