如何将结构化数据放入jscript数组

如何将结构化数据放入jscript数组

本文介绍了如何将结构化数据放入jscript数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的数据的格式为:
设备名称
尺寸
位置

我希望它位于结构化数组中,我不确定这是否可以在其他语言中使用jscript,因此它看起来像:

var AA新数组类型(大小,位置,名称);

AA [1] .size = 10;
AA [2] .location = 45;
AA [3] .name ="Cisco路由器";

这样就可以对数组AA进行排序,例如大小或名称.
是否可以在jscript中创建它.

My data is in the form:
device name
Size
location

I would like it to be in an structured array, i am not sure if this is possible jscript it is in some other languages, so it would look something like:

var AA new array of type (size,location,name);

AA[1].size = 10;
AA[2].location = 45;
AA[3].name = "Cisco router";

And so be able to sort this array AA on for example size or name.
Is it possible to create this in jscript.

推荐答案



这篇关于如何将结构化数据放入jscript数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 19:20