How to save or edit javascript files in ace editor

后端 未结 2 1275
生来不讨喜
生来不讨喜 2021-01-29 07:59

I want to use the Ace editor to save and edit javascript files it\'s not clear in the documentation how to do that.

2条回答
  •  轮回少年
    2021-01-29 08:29

    Lets say you have a button called download, this is how you would do it

    I am using the filesaver.js library that you can find HERE

    document.getElementById("download").addEventListener("click", ()=>{
          var file = new File([editor.getValue()], "zup.js", {type: "text/plain;charset=utf-8"});
          saveAs(file);
    })
    

提交回复
热议问题