0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

javascriptでjsonを使って管理したい時のプログラム一例

Posted at

javascriptでのjson記述に慣れていない人向けに、jsonに加工して保存するサンプルソースの一例を書きました。
 もっといい書き方がある気がしますか、私が慣れていないので、ここまで

サンプルコード

//javascriptでjsonを使って管理したい時のプログラム一例 また追加項目を加えることも可能

//対象のデータ
terget_data1 = ["apple","banana","piati"];
terget_data2 = [3,2,4];

//jsonの初期化
json_data = {}
json_data.data1 = []
json_data.data2 = []

//一つ一つ代入していく、その時加工したい内容を入れられるように、文字列を使いした。
for(
    var count = 0;
    count < terget_data1.length;
    count++
){
    json_data.data1[count] = "追加項目3:"+terget_data1[count]+":追加項目1";
    json_data.data2[count] = "追加項目4:"+terget_data2[count]+":追加項目2";
}



0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?