This time I will bring you the interactive storage of Ajax and JSON data. What are the precautions for interactive storage of Ajax and JSON data? The following is a practical case, let's take a look.
Data storage is the core function of XML stands for extensible markup language and is a relatively flexible data format. Many applications store data. Everyone likes to use it. Its structure is like HTML, and it also contains elements, tags and attributes. The model is the same. One of its major advantages is that it is an extensible format, and you are not restricted to a certain preset data structure; and it also conforms to the DOM standard, and the data obtained using AJAX calls is just like parsing HTML, through The corresponding DOM methods and attributes parse it:<ingredient> <prison> <name>apple</name> <color>red</color> </prison> <prison> <name>tomato</name> <color>red</color> </prison> <prison> <name>peach</name> <color>pink</color> </prison> <prison> <name>pitaya</name> <color>green</color> </prison> </ingredient>But a serious flaw of XML is that it cannot be used for cross-domain Aiax calls, which means that the XML data of each Ajax call must be consistent with the execution call The script is in the same domain name, otherwise the request will fail. HTML storage is also similar, it is the easiest to combine with Ajax. The important factor in using this data format is speed. The HTML code snippet can be directly output to the DOM without being parsed on the client, so we do not need to write additional JavaScript code to parse HTML.
- apple:red
- tomato:red
- peach:pink
- piyata:green
The following is How to use JavaScript for data storage, step by step...
Variables
JavaScript is the most basic data storage method. It accepts strings, values, Boolean, etc. The core content is its scope issue.Performance issues related to variables:
After the variable is declared, it will be cached in the JavaScript file, so it is within the scope They can be used repeatedly. The cost of obtaining variables is minimal. As long as the number of times the data is used is greater than 1, it should be stored in the variable.Array
Arrays, like ordinary arrays, associative arrays and .join() method can specify a certain character as a connector for each element in the array; The slice() method can output elements within a certain range in the array; the shift() and unshift() methods are used to remove or add elements at the head of the array respectively; the pop() method is used to remove and return elements in the array. The last element; the concat() method is used to splice multiple arrays into one array, depending on the order of the parameters; the sort() method can arrange the elements of the array in alphabetical order or a custom order, but it will only be based on the first Character sorting is generally wrong.Object
When the data becomes more complex and difficult to manage, I will choose to convert the array into an object. Because the way objects are stored is more readable.//对象数据存储 var meatball = { bread:"wang", meat :"li", cheese : "zhang" }; //返回对象的bread alert(meatball.bread);
The impact of objects on efficiency
The above code has only one layer, but it can be infinitely nested. Objects can better organize code and improve modularity. At the same time, though, there are performance and maintainability tradeoffs to consider, as it requires looking for one of these three. IfJSON
JSON是一种易于同jacascript 集成的数据格式,它通常是在用JavaScript调用外部服务器时使用的。JSON数据存放于独立的文件中,而且通常位于另一台完全不同的服务器上。它现在是最常见的一种调用API服务时所使用的数据格式,人们之所以选中它,是因为此格式非常易于阅读。起初,JSON格式是作为一种XML格式的替代方案而出现的,但很快它就在数据交换领域占据了主流的地位。它是一种轻量级的数据格式,易于通过远程Ajax调用进行跨域名访问。尽管JavaScript对JSON格式的解析提供了原生的支持,但它还是一种独立于平台的格式,客户端与服务器端在数据交换时都可以使用。
由于JSON格式具备跨域名访问的能力,所以为了防止一切恶意行为,我们务必只使用从可信的数据源中获取JSON。
这是一个 Salad.json 数据文件:
//ajax JSON Salad var ingredient = { "fruit":[ { "name" : "apple", "color" : "green" }, { "name" : "tomato", "color" : "red" }, { "name" : "peach", "color" : "pink" }, { "name" : "pitaya", "color" : "white" }, { "name" : "lettuce", "color" : "green" } ] };
JSON最常见的用途就是配合API调用,在于API为基础的网络程序开发环境中,使用何种后端语言进行开发,数据格式都无需改变。
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
The above is the detailed content of Ajax and JSON data interactive storage. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
