使用javascript将数据保存到文本文件

时间:2017-06-18 02:30:08

标签: javascript html webserver

我找到了一个脚本,用于将文本框的内容写入文本文件,并显示下载链接。

但现在我需要帮助修改此代码,以便在单击按钮后将文本文件保存在服务器中的特定位置。

以下是代码:

<html>
<head>
    <script type='text/javascript'>//<![CDATA[
        window.onload=function(){
            (function () {
                var textFile = null,
                makeTextFile = function (text) {
                    var data = new Blob([text], {type: 'text/plain'});
                    // If we are replacing a previously generated file we need to
                    // manually revoke the object URL to avoid memory leaks.
                    if (textFile !== null) {
                        window.URL.revokeObjectURL(textFile);
                    }
                    textFile = window.URL.createObjectURL(data);
                    return textFile;
                };

                var create = document.getElementById('create'),
                    textbox = document.getElementById('textbox');

                create.addEventListener('click', function () {
                    var link = document.getElementById('downloadlink');
                    link.href = makeTextFile(textbox.value);
                    link.style.display = 'block';
                }, false);
            })();
        }//]]> 
        </script>
</head>
<body>
    <textarea id="textbox">Type something here</textarea>
    <button id="create">Create file</button>
    <a download="info.txt" id="downloadlink" style="display: none">Download</a>

    <script>
    // tell the embed parent frame the height of the content
    if (window.parent && window.parent.parent){
        window.parent.parent.postMessage(["resultsFrame", {
            height: document.body.getBoundingClientRect().height,
            slug: "qm5AG"
        }], "*")
    }
    </script>
</body>
</html>

请告知。

1 个答案:

答案 0 :(得分:2)

您需要学习服务器端实践的后端开发。客户端无法在没有后端的情况下对服务器进行任何修改。 (这将是一个巨大的安全漏洞!)我建议在这里学习NodeJS:How to pass props to {this.props.children}

一旦你变得更熟悉并且认为你已经准备好再次接受这个项目,请给我一个直接的信息,我会指出你正确的方向。