使用本地存储在从另一个表保存的HTML TABLE中打印JSON,以便在另一个页面上打印我的表 [英] Printing JSON in HTML TABLE saved from another table using local storage so that i print my table on another page

查看:24
本文介绍了使用本地存储在从另一个表保存的HTML TABLE中打印JSON,以便在另一个页面上打印我的表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的作业中,我必须使用来从用户输入中获取数据并将数据保存在本地存储中.我必须将此数据从本地存储以水平表格式打印到其他页面.为此,我编写了用于用户输入和将数据保存在本地存储中的代码

In my assignment i have to take the data from user input using and save data in local storage. I have to print this data from local storage in horizontal table format to other pages.For this i made the code for user input and saving data in local storage

<style>
        data {
            color: #138bc2;
        }
    </style>
    <body>
   <script src="https://cdn.jsdelivr.net/npm/chart.js@2.8.0"></script>
   <div id="POItablediv">
   <p>
   <input type="button" id="bt" value="Submit Data" onclick="submit()" />
   </p>
   <input type="button" onclick="insRow()" id="addPOIbutton" value="Add values"/><br/><br/>
   <table id="POITable" border="1">
   <thead>
       <tr>
           <td>WEEK NO</td>
           <td>Daily exercise</td>
           <td>calorie</td>
           <td>food</td>
            <td>Revision no</td>
           <td>Delete?</td>

       </tr>
       </thead>
       <tbody>
       <tr>
           <td><input size=25 type="text" id="weekbox"/></td>
           <td><input size=25 type="text" id="latbox"/></td>
           <td><input size=25 type="text" id="lngbox"/></td>
           <td><input size=25 type="text" id="lnbox"/></td>
           <td><input size=25 type="text" id="lntbox"/></td>
           <td><input type="button" id="delPOIbutton" value="Delete" onclick="deleteRow(this)"/></td>

       </tr>
       <tbody>
   </table>
   </body>
   <script>
   function deleteRow(row)
    {
        var i=row.parentNode.parentNode.rowIndex;
        if(i>1){
        document.getElementById('POITable').deleteRow(i);
        }

    }


    function insRow()
    {

        var x=document.getElementById('POITable');
        var new_row = x.rows[1].cloneNode(true);
        var len = x.rows.length;
        new_row.cells[0].childNodes[0].value = "";

        var inp1 = new_row.cells[1].getElementsByTagName('input')[0];
        inp1.id += len;
        inp1.value = '';
        var inp2 = new_row.cells[2].getElementsByTagName('input')[0];
        inp2.id += len;
        inp2.value = '';
        x.appendChild( new_row );
        var inp3 = new_row.cells[3].getElementsByTagName('input')[0];
        inp3.id += len;
        inp3.value = '';
        var inp4 = new_row.cells[4].getElementsByTagName('input')[0];
        inp4.id += len;
        inp4.value = '';
        x.appendChild( new_row );
    }
   function submit() 
   {
     var table = document.getElementById("POITable")
     var tableLen = table.rows.length           
     var data = {labels: [], alpha: [], beta: [],gamma:[]}

   for (var i = 1; i < tableLen; i++) 
  {
     data.labels.push(table.rows[i].cells[0].childNodes[0].value)
     data.alpha.push(table.rows[i].cells[1].childNodes[0].value)
     data.beta.push(table.rows[i].cells[2].childNodes[0].value)
     data.gamma.push(table.rows[i].cells[3].childNodes[0].value)
  }
 var alphadata = data
localStorage.setItem("quant", JSON.stringify(alphadata));

以上代码用于从用户处获取输入并保存在本地存储中.我的目的是将数据从本地存储打印到垂直页眉中的另一页上,这意味着该表的左侧(通常)具有header()标签.

above code is for taking input from user and saved in local storage .My aim is to print data from local storage to another page in vertical header I mean that the table has the header () tag on the left side (generally).

e<body>
<input type="button" onclick="CreateTableFromJSON()" value="Create Table From JSON" />
<p id="showData"></p>
 </body>

<script>
function CreateTableFromJSON() {
    var myBooks =JSON.parse(localStorage.getItem("quant"));

    var col = [];
    for (var i = 0; i < myBooks.length; i++) {
        for (var key in myBooks[i]) {
            if (col.indexOf(key) === -1) {
                col.push(key);
            }
        }
    }

    // CREATE DYNAMIC TABLE.
    var table = document.createElement("table");

    // CREATE HTML TABLE HEADER ROW USING THE EXTRACTED HEADERS ABOVE.

    var tr = table.insertRow(-1);                   // TABLE ROW.

    for (var i = 0; i < col.length; i++) {
        var th = document.createElement("th");      // TABLE HEADER.
        th.innerHTML = col[i];
        tr.appendChild(th);
    }

    // ADD JSON DATA TO THE TABLE AS ROWS.
    for (var i = 0; i < myBooks.length; i++) {

        tr = table.insertRow(-1);

        for (var j = 0; j < col.length; j++) {
            var tabCell = tr.insertCell(-1);
            tabCell.innerHTML = myBooks[i][col[j]];
        }
    }

    // FINALLY ADD THE NEWLY CREATED TABLE WITH JSON DATA TO A CONTAINER.
    var divContainer = document.getElementById("showData");
    divContainer.innerHTML = "";
    divContainer.appendChild(table);
    }
    </script>
    </html>

当我单击第二页上的按钮时,表格未打印.它给了我空白页.任何线索将不胜感激.

Table is not printing when i click on button in second page . its gives me blank page . Any lead would be appreciated.

推荐答案

此代码实现了另一个创建水平格式的功能.请阅读评论,并尝试理解它,以便将来对您有帮助

This code implements another function to create a horizontal format. Please read the comments and also try to understand it so that it can help you in the future

<html>

<body>
    <input type="button" onclick="createHorizontal()" value="Create Table From JSON" />
    <p id="showData"></p>
    <div id="horizontal"></div>
</body>

<script>

    function createHorizontal(){
        var myBooks = JSON.parse(localStorage.getItem("quant"));
        console.log(myBooks);

        col_keys = Object.keys(myBooks);
        // Object.keys gets the keys of the object
        col_values = Object.values(myBooks);
        // Object.values gets the values in an object

        var final_array = [];
        /* Here is the final array that will hold all the data */

        for(var i = 0; i < col_keys.length; i++){
            var inner = [];
            // The inner array that will be pushed with a new value
            // after every loop

            inner.push("<div class='main'>");
            inner.push("<li>" + col_keys[i] + "</li>");
            for(var j = 0; j < col_values[0].length; j++){
                inner.push("<li>" + col_values[i][j] + "</li>");
            }
            inner.push("</div>");

            //The above code creates the html for each of the rows

            inner = inner.join("");
            // To remove the commas from the final array
            final_array.push(inner);
        }
        console.log(final_array);

        var elem = document.getElementById("horizontal");
        var final_div = [];

        final_div.push("<div class='container'>");
        for(var n = 0; n < final_array.length; n++){
            final_div.push(final_array[n]);
        }
        final_div.push("</div>");

        // The above code creates the html for the whole div block

        final_div = final_div.join("");
        // To remove the commas
        console.log(final_div);

        elem.innerHTML = "";
        elem.innerHTML = final_div;
    }
</script>
<style>
    .container {
        display: flex;
        flex-direction: column;
        /* Make the rows stack on top of each other */
    }

    .main {
        display: flex;
        flex-direction: row;
        /* Make the elements in the div stack side by side */
    }

    .main li {
        list-style-type: none;
        padding: 5px 10px;
        width: 50px;
    }

    .main li:first-of-type {
        font-weight: bold;
        background-color: #222222;
        color: #ffffff;
    }
</style>

</html>

它还使用 CSS 使元素以该格式显示,否则外观会有所不同.我建议您分析并理解它.

It also uses CSS to make the elements appear in that format or else it would look different. I advise you to analyze and understand it.

这篇关于使用本地存储在从另一个表保存的HTML TABLE中打印JSON,以便在另一个页面上打印我的表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆