gpt4 book ai didi

javascript - 如何更改 javascript 数组中的对象名称?

转载 作者:行者123 更新时间:2023-11-28 12:28:05 25 4
gpt4 key购买 nike

我在这个网站上找到了一些可能的解决方案,但没有一个真正帮助我前进。

我的数组如下所示:

[
{"customerName":"Atelier graphique","addressLine1":"54, rue Royale"},
{"customerName":"Signal Gift Stores","addressLine1":"8489 Strong St."},
etc, etc

我想将 customerName 更改为 value,将 addressLine1 更改为 data。我尝试了以下操作,但我在这里做错了。

var myArray = [];

$(document).ready(function () {
$("#text-id").on( 'click', function () {
$.ajax({
type: 'post',
url: 'connect.php',

success: function( data ) {
console.log( data );
myArray.push(data);

}
});
});


function DumpCustomers() {

for(i=0;i<myArray.length; i++){
myArray[i].addressLine1= "data";
delete myArray[i].addressLine1;
myArray[i].customerName= "value";
delete myArray[i].customerName;
}

alert(myArray);

}

最佳答案

只需使用 Array.map将数组值投影为所需的类型:

var myTransformedArray = myOriginalArray.map(function(item){
return {
value : item.customerName,
data : item.addressLine1
};
});

如果您需要支持旧版浏览器,您可能需要添加一个polyfill来修补缺少map功能的情况。上面的链接提供了符合 ECMA-262 第 5 版标准的实现:

if (!Array.prototype.map) {
Array.prototype.map = function(callback, thisArg) {
var T, A, k;
if (this == null) {
throw new TypeError(" this is null or not defined");
}
var O = Object(this);
var len = O.length >>> 0;
if (typeof callback !== "function") {
throw new TypeError(callback + " is not a function");
}
if (arguments.length > 1) {
T = thisArg;
}
A = new Array(len);
k = 0;
while (k < len) {
var kValue, mappedValue;
if (k in O) {
kValue = O[k];
mappedValue = callback.call(T, kValue, k, O);
A[k] = mappedValue;
}
k++;
}
return A;
};
}

关于javascript - 如何更改 javascript 数组中的对象名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25724732/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com