後您澄清在評論你的要求,該解決方案易於:
var XMLObject = {};
var XMLObjectDetail = [];
XMLObject["XMLObjectDetail"] = XMLObjectDetail;
您可以縮短到
var XMLObjectDetail, XMLObject = {XMLObjectDetail: XMLObjectDetail = []};
不過,我需要提及的代碼中的一些嚴重的缺陷:
XMLObject = {}; // no var keyword: the variable will be global
var XMLObjectDetail = [];
$.each(data, function(index, element) {
// I don't know how your data object/array looks like, but your code will be
// executed many times
// For each element, you will overwrite the properties
XMLObject.CardCode = element['CardCode'] // missing semicolon
XMLObject.CardName = element['CardName'];
// so that the final XMLObject will only contain cardcode and -name of the last one
// It will depend on your console whether you see different objects
// or the same object reference all the time
console.log(XMLObject);
// This part is completey incomprehensible
// you now loop over the properties of the current element, e.g. CardCode
$.each(element, function(key, value) {
// and again you only overwrite the same property all the time
XMLObject[[XMLObjectDetail.InvPayAmnt]] = value['InvPayAmnt'];
// but wait: The property name you try to set is very, um, interesting.
// first, XMLObjectDetail is still an (empty) Array and has
// no 'InvPayAmnt' property - leads to a undefined
// then, you build an Array with that [undefined] value as the only item
// OMG, an array? JavaScript does only allow strings as property names,
// so the array will be converted to a string - resulting to the empty string ""
});
});
你要的對象添加到陣列或其他方式輪? – Bergi
我想將XMLObjectDetail數組添加到對象XMLObject中。 – MG1
它應該在XMLObject中獲得哪個屬性名稱? – Bergi