简体   繁体   English

在javascript中从localstorage中检索多个字符串值

[英]Retrieving multiple string values from localstorage in javascript

I am attempting to pull a string of data from localstorage in javascript and combine multiple values from multiple strings. 我试图从javascript中的localstorage中提取一串数据,并组合多个字符串中的多个值。 For example I may have the following 2 strings 例如,我可能有以下2个字符串

Bob;companyA;6141692120;email1@email.com;1 John St;;Bellevue;6056;;6;10;20.00;52.800000000000004;72.80;7.28;80.08;
Jane;companyB;6157692120;email2@email.com;1 Jack St;;Bellevue;6056;;6;10;20.00;52.800000000000004;72.80;7.28;80.08;

I want to ignore the first few and add the last 5 or 6 together from each, so value [13] in string A + value [13] in string B = X, there will be doens of strings and they all have random numbers, I have attached the javascript code below and am hoping someone can point me in the right direction. 我想忽略前几个,并将每个最后的5或6加在一起,所以字符串A +值[13]中的值[13]在字符串B = X中,会有字符串,它们都有随机数,我已经在下面添加了javascript代码,希望有人可以指出我正确的方向。

windows.onload= getAllItems();
function getAllItems(){

var all = [];
for(var i = 0, j = localStorage.length; i < j; i++) {
    all[i] = localStorage[i].split(';');
}

var sum = 0;
for(var i = 0, j = all.length; i < j; i++) {
    sum += all[i][12];
}

var bags = all[9];
var distance = all[10];
var hdelivery_fee = all[11];
var hprice = all[12];
var htotal_notax = all[13];
var hgst = all[14];
var htotal_tax = all[15];
var hordernumber  = all[16];

document.write('Number of Bags; ' + bags + '<br />');
document.write('Distance; ' + distance + '<br />');
document.write('Delivery Fee; $' + hdelivery_fee + '<br />');
document.write('Price of Bags; $' + hprice + '<br />');
document.write('Total Ex-GST; $' + htotal_notax + '<br />');
document.write('GST; $' + hgst + '<br />');
document.write('Total Inc GST; $' + htotal_tax + '<br />');
document.write('hordernumber; ' + hordernumber + '<br />');
}

Also it is probably worth mentioning that this is an assignment and as such I am not allowed to use JSON or jquery in any capacity 另外值得一提的是,这是一个赋值,因此我不允许以任何身份使用JSON或jquery

EDIT: I have changed the code to match the answer given below, and I think i have taken the output out of the loop, however I am incredibly new at this so a lot of it is hit and miss. 编辑:我已经改变了代码以匹配下面给出的答案,我认为我已经把输出从循环中取出,但是我在这方面非常新,所以很多都是命中和错过。 It doesnt seem to be working as is even though it looks like it should (to me) 虽然看起来应该(对我来说)它似乎没有工作原样

EDIT2: Adding javascript for localstorage info source EDIT2:为localstorage信息源添加javascript

function source()
{
var newDate = new Date();
var itemId = newDate.getTime();
var values = new Array();
    var name = document.getElementById("name").value;
    var company = document.getElementById("company").value;
    var contactnumber= document.getElementById("contactnumber").value;
    var email = document.getElementById("email").value;
    var address1 = document.getElementById("address1").value;
    var address2 = document.getElementById("address2").value;
    var suburb = document.getElementById("suburb").value;
    var postcode = document.getElementById("postcode").value;
    var comments = document.getElementById("comments").value;
    var bags = document.getElementById("bags").value;
    var distance = document.getElementById("distance").value;
    var hdelivery_fee = document.getElementById("hdelivery_fee").value;
    var hprice = document.getElementById("hprice").value;
    var htotal_notax = document.getElementById("htotal_notax").value;
    var hgst = document.getElementById("hgst").value;
    var htotal_tax= document.getElementById("htotal_tax").value;
    var hordernumber= document.getElementById("hordernumber").value;


values.push(name);
values.push(company);
values.push(contactnumber);
values.push(email);
values.push(address1);
values.push(address2);
values.push(suburb);
values.push(postcode);
values.push(comments);
values.push(bags);
values.push(distance);
values.push(hdelivery_fee);
values.push(hprice);
values.push(htotal_notax);
values.push(hgst);
values.push(htotal_tax);
values.push(hordernumber);

try {
    localStorage.setItem(itemId, values.join(";")); 
} catch (e) {
    if (e == QUOTA_EXCEEDED_ERR) {
        alert("Quota exceeded!");
    }
}

}

EDIT3: EDIT3:

adding entire html page for location of report including javascript. 为报告的位置添加整个html页面,包括javascript。

<html>
<head>
<title>Form Processor</title>
     <link rel="stylesheet" type="text/css" href="layout.css">




</head>
<body>
<div id="header">
        <h1 id="main_tile"> Everwarm Fuel Merchants - Daily Report </h1>

    </div>
<h1> Daily Sales Summary <h1>

<p>
<script>
function getAllItems(){
    var all=[];
    for (i = 0,j=localStorage.length; i<j; i++) {
        all[i] = localStorage.getItem(localStorage.key(i)).split(';');
    }
    function getTotal(index) {
         var sum = 0;
         for(var i = 0, j = all.length; i < j; i++) {
            sum += parseFloat(all[i][index]);
        }
        return sum;
    }
    var bags = getTotal(9);
    var distance = getTotal(10);
    var hdelivery_fee = getTotal(11);
    var hprice = getTotal(12);
    var htotal_notax = getTotal(13);
    var hgst = getTotal(14);
    var htotal_tax = getTotal(15);
    var hordernumber = getTotal(16);

    document.write('Number of Bags; ' + bags + '<br />');
    document.write('Distance; ' + distance + '<br />');
    document.write('Delivery Fee; $' + hdelivery_fee + '<br />');
    document.write('Price of Bags; $' + hprice + '<br />');
    document.write('Total Ex-GST; $' + htotal_notax + '<br />');
    document.write('GST; $' + hgst + '<br />');
    document.write('Total Inc GST; $' + htotal_tax + '<br />');
    document.write('hordernumber; ' + hordernumber + '<br />');
  }</script>

  </p>


<input type="button" value="Clear storage" onclick="localstorage.clear()" > </input>

<input type="button" value="Return" onclick="history.back()"> </input>

</body>
</html> 

Your solution uses a loop that includes all the process - even the output! 您的解决方案使用包含所有过程的循环 - 甚至是输出! You need to separate the process in two. 您需要将过程分为两部分。 The loop part would pick up all the data and add it all up, then the output part doesn't need a loop. 循环部分将拾取所有数据并将其全部添加,然后输出部分不需要循环。

Try this: 尝试这个:

function getAllItems(){
    var all=[];
    for (i = 0,j=localStorage.length; i<j; i++) {
        all[i] = localStorage.getItem(localStorage.key(i)).split(';');
    }
    function getTotal(index) {
         var sum = 0;
         for(var i = 0, j = all.length; i < j; i++) {
            sum += parseFloat(all[i][index]);
        }
        return sum;
    }
    var bags = getTotal(9);
    var distance = getTotal(10);
    var hdelivery_fee = getTotal(11);
    var hprice = getTotal(12);
    var htotal_notax = getTotal(13);
    var hgst = getTotal(14);
    var htotal_tax = getTotal(15);
    var hordernumber = getTotal(16);

    document.write('Number of Bags; ' + bags + '<br />');
    document.write('Distance; ' + distance + '<br />');
    document.write('Delivery Fee; $' + hdelivery_fee + '<br />');
    document.write('Price of Bags; $' + hprice + '<br />');
    document.write('Total Ex-GST; $' + htotal_notax + '<br />');
    document.write('GST; $' + hgst + '<br />');
    document.write('Total Inc GST; $' + htotal_tax + '<br />');
    document.write('hordernumber; ' + hordernumber + '<br />');
  }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM