访问数组中的对象属性

时间:2011-04-17 15:26:21

标签: javascript titanium

    var row = Ti.UI.createTableViewRow({height:50});
    var rowData = [];
    row.add(PrimeSuiteUserName);
    row.add(PrimeSuiteUserPassword);
    Ti.API.info("HelloRow" +row);
    rowData[0] = Object.property1;
    rowData[1] = Object.property1;
    Ti.API.info("Hello" +rowData);

当我警告我的行对象时,我得到了这个......

HelloRow[Ti.UI.TableViewRow]

如何在数组中访问我的行对象属性。

1 个答案:

答案 0 :(得分:1)

试试这个。

// section index
var sectionIndex = 0;

// row index
var rowIndex = 0

// without label or childfield
rowtitle = yourTableView.data[sectionIndex].rows[rowIndex].title;
Ti.API.info("HelloRow " +rowtitle);

// child index
var childIndex = 0;

// with label or childfield
var text = yourTableView.data[sectionIndex].rows[rowIndex].children[childIndex].text;
Ti.API.info("HelloRow " +text);