创建函数(JS)以将字符串保存在文件中并调用此函数

时间:2016-09-10 11:15:54

标签: javascript php jquery webix

我和Webix玩了几天,但我没有足够的经验,所以需要帮助。

我需要什么: 使用textarea和按钮创建简单页面。当我按下按钮时,它会在textarea中输入数据并将其保存在data / data.php文件中的N字符串中。

这是我到目前为止所能做的:

<!DOCTYPE html>
<html>
<head>
<title>Loading from DB</title>
<link rel="stylesheet" href="C:/__OSS/00. Soft/Webix/codebase/webix.css" type="text/css">
<script src="C:/__OSS/00. Soft/Webix/codebase/webix.js" type="text/javascript"></script>
</head>
<body>

<!--<?php
$filename = getcwd() . "data/data.php";
echo $filename;
$line_i_am_looking_for = 5;
$lines = file( $filename , FILE_IGNORE_NEW_LINES );
$lines[$line_i_am_looking_for] = '6my modified line';
file_put_contents( $filename , implode( "\n", $lines ) );
?>-->

<div class='header_comment'>Test Button</div>
<div id="testB" style='height:600px'></div>
<hr>
<script type="text/javascript" charset="utf-8">

        webix.ready(function(){


          gridb = webix.ui({
                                container:"testB",
                 "view": "form",
  "elements": [
    {
      "view": "textarea",
      "name": "woNumber",
      "id": "textarea",
      "label": "",
      "width": 300,
      "height": 200,
      "options": [
        "onViewResize"
      ],
      "value": "",
      "placeholder": "WO number (separate with comma if several)",
      "labelPosition": "top"
    },
    {
      "view": "button",
      "name": "getWODetails",
      "label": "",
      "value": "Submit",
      "options": [
        "autowidth:true"
      ],
                on:{
                    onItemClick:function(id){
                        webix.message("Sikim BLEAT'!!!");

/*                  onItemClick: getTextareaData;
*/
                    }
                },
      "labelPosition": "top"

    },
    {
      "view": "button",
      "id": "button1",
      "name": "getWODetails",
      "label": "",
      "value": "Passss",
      "options": [
        "autowidth:true"
      ],
                                on:{
                                        onItemClick:function(){
                                                webix.message("Values of textarea is "+$$('textarea').getValue());
                                     }
                                },
      "labelPosition": "top"

    }

  ]
                        });     
        });

        </script>
</body>
</html>

所以我可以使用$$('textarea').getValue())从textarea获取价值,但不知道如何在文件中写入它。 我可以使用PHP(注释掉部分)轻松完成,但不知道如何使它适用于Webix。我相信它不是那么难,但无法弄清楚该怎么做..

任何高度帮助的帮助。

0 个答案:

没有答案