search
HomeCommon ProblemHow to write json array
How to write json arrayFeb 09, 2021 am 10:17 AM
json array

How to write json array: 1. Use [for-in] to access the array; 2. Use the index value to modify the array value; 3. Use the delete keyword to delete the array element, the code is [delete myObj. sites[1];].

How to write json array

#The operating environment of this article: Windows 7 system, Dell G3 computer.

How to write json array:

Array as JSON object

[ "Google", "Runoob", "Taobao" ]

JSON array in Written in brackets.

Array values ​​in JSON must be legal JSON data types (string, number, object, array, Boolean or null).

In JavaScript, array values ​​can be the above JSON data types, or JavaScript expressions, including functions, dates, and undefined.

Array in JSON object

The value of the object property can be an array:

{ 
  "name":"网站", "num":3, "sites":[ "Google", "Runoob", "Taobao" ] 
}

We can use the index value to access the array:

x = myObj.sites[0];

Looping through an array

You can use for-in to access an array:

for (i in myObj.sites) 
{ x += myObj.sites[i] + "<br>"; }

You can also use a for loop:

for (i = 0; i < myObj.sites.length; i++) 
{ x += myObj.sites[i] + "<br>"; }

Arrays in nested JSON objects

The array in the JSON object can contain another array, or another JSON object:

myObj = {
    "name":"网站",
    "num":3,
    "sites": [
        { "name":"Google", "info":[ "Android", "Google 搜索", "Google 翻译" ] },
        { "name":"Runoob", "info":[ "菜鸟教程", "菜鸟工具", "菜鸟微信" ] },
        { "name":"Taobao", "info":[ "淘宝", "网购" ] }
    ]
}

We can use for-in to loop Access each array:

for (i in myObj.sites) {
    x += "<h1 id="nbsp-nbsp-myObj-sites-i-name-nbsp-nbsp">" + myObj.sites[i].name + "</h1>";
    for (j in myObj.sites[i].info) {
        x += myObj.sites[i].info[j] + "<br>";
    }
}

Modify the array value

You can use the index value to modify the array value:

myObj.sites[1] = "Github";

Delete the array element

We can use the delete keyword to delete array elements:

delete myObj.sites[1];

Related free learning recommendations: php programming(video)

The above is the detailed content of How to write json array. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
详解Java中JSON数组的排序和过滤操作。详解Java中JSON数组的排序和过滤操作。Sep 06, 2023 pm 03:22 PM

详解Java中JSON数组的排序和过滤操作在Java开发中,处理JSON数据是一项常见的任务。JSON数组作为其中一种常用的数据结构,在实际应用中经常需要进行排序和过滤操作。本文将详细介绍Java中JSON数组的排序和过滤操作,并提供相应的代码示例。一、JSON数组的排序操作使用JSONArray对象存储JSON数组在Java中,使用json库处理JSON数

快速上手:Java中的JSON数组合并和拆分技巧。快速上手:Java中的JSON数组合并和拆分技巧。Sep 06, 2023 am 10:21 AM

快速上手:Java中的JSON数组合并和拆分技巧在现代的软件开发中,数据的格式和传输变得愈发重要。其中,JSON(JavaScriptObjectNotation)是一种常用的数据格式,特别适用于前后端交互和数据存储。在Java开发中,我们经常需要处理JSON对象和JSON数组。本文将介绍如何在Java中合并和拆分JSON数组,以及实现这些操作的技巧和示

如何在Java中将JSON数组转换为CSV?如何在Java中将JSON数组转换为CSV?Aug 21, 2023 pm 08:27 PM

JSON可以用作数据交换格式,它是轻量级的且与语言无关。一个JSONArray可以解析文本字符串以生成类似于向量的对象,并支持java.util.List接口。我们可以使用org.json.CDL类将JSON数组转换为CSV格式,它提供了一个静态方法toString(),用于将JSONArray转换为逗号分隔的文本。我们需要导入org.apache.commons.io.FileUtils包,以使用writeStringToFile()方法将数据存储在CSV文件中。语法publicstaticj

我们如何在Java中合并两个JSON数组?我们如何在Java中合并两个JSON数组?Aug 20, 2023 pm 11:05 PM

一个JSON&nbsp;是一种轻量级的&nbsp;数据交换格式,JSON的格式是&nbsp;键值对。JSONArray&nbsp;可以解析文本从一个字符串生成一个类似向量的对象并支持java.util.List接口。我们可以使用org.json.simple.JSONArray类在Java中合并两个JSON数组。我们可以使用addAll()&nbsp;方法(从接口&nbsp;java.util.List继承)在下面的程序中合并两个JSON数组。示例

入门级指南:Java中操作JSON数组的常见问题解答。入门级指南:Java中操作JSON数组的常见问题解答。Sep 06, 2023 am 11:22 AM

入门级指南:Java中操作JSON数组的常见问题解答摘要:随着互联网的发展,JSON(JavaScriptObjectNotation)成为了数据交换的常用格式。在Java开发中,操作JSON数组是一项常见的任务。本文将解答Java开发中操作JSON数组的常见问题,并提供代码示例。如何创建一个JSON数组?在Java中,可以使用第三方库如JSON-jav

如何在Java中将JSON数组反序列化为列表的通用类型?如何在Java中将JSON数组反序列化为列表的通用类型?Aug 20, 2023 pm 12:13 PM

Gson库提供了一个名为com.google.gson.reflect.TypeToken的类来存储泛型类型,通过创建一个GsonTypeToken类并传递类类型。使用这个类型,Gson可以知道在泛型类中传递的类。语法publicclassTypeToken&lt;T&gt;extendsObject我们可以在下面的示例中将JSON数组反序列化为通用类型的列表示例importjava.lang.reflect.Type;importjava.util.*;importcom.go

JAVA中如何解析和遍历JSON数组?掌握JSON数组处理技巧。JAVA中如何解析和遍历JSON数组?掌握JSON数组处理技巧。Sep 06, 2023 am 11:30 AM

JAVA中如何解析和遍历JSON数组?掌握JSON数组处理技巧。随着现代互联网的快速发展,JSON(JavaScriptObjectNotation)已经成为了一种常用的数据交换格式。它简洁、易读,非常适合用于Web开发和API接口的数据传输。在JAVA中,解析和遍历JSON数组是非常常见的操作。本篇文章将介绍如何使用JAVA解析JSON数组,并给出相应

我们如何在Java中使用流API实现JSON数组?我们如何在Java中使用流API实现JSON数组?Sep 19, 2023 pm 06:01 PM

JsonGenerator接口可用于以流式传输方式将JSON数据写入输出源。我们可以使用JsonGenerator的writeStartArray()方法创建或实现一个JSON数组,该方法在当前对象上下文中写入JSON名称/起始数组字符对。writeStartObject()方法写入JSON起始对象字符,仅在数组上下文中有效,writeEnd()方法写入当前上下文的结尾。语法JsonGeneratorwriteStartArray(Stringname)示例importjava.io.*;imp

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.