vendorN-6ren">
gpt4 book ai didi

javascript - 如何从 SAP UI 中的表中获取数据?

转载 作者:行者123 更新时间:2023-12-03 07:31:39 26 4
gpt4 key购买 nike

我有一张 table :

<Table id="Listing" class="tableList" mode="MultiSelect" items="{path: 'masterData>/contactsList'}">
<columns>
<Column minScreenWidth="Tablet" demandPopin="true">
<Text text="{i18n>vendorNum}"/>
</Column>
<Column minScreenWidth="Tablet" demandPopin="true">
<Text text="{i18n>recipientType}"/>
</Column>
<Column minScreenWidth="Tablet" demandPopin="true">
<Text text="{i18n>supplierName}"/>
</Column>
</columns>

<items>
<ColumnListItem>
<cells>
<Text text="{masterData>vendorNum}"/>
</cells>
<cells>
<Text text="{masterData>recipientType}"/>
</cells>
<cells>
<Text text="{masterData>supplierName}"/>
</cells>
</ColumnListItem>
</items>
</Table>

我有一种将数据导出到 csv 的方法:

onExportCSV:function() {

//... then I want to get the data in the form of an object - sContent

oExport.generate().done(function(sContent) {
var uri = 'data:text/csv;charset=utf-8,' + sContent;
var downloadLink = document.createElement("a");
downloadLink.href = uri;
downloadLink.download = "data.csv";
document.body.appendChild(downloadLink);
downloadLink.click();
document.body.removeChild(downloadLink);
console.log(sContent);
}).always(function() {
this.destroy();
});
}

如何获取表中的当前数据以进一步导出到 csv?同时,为此,我无论如何也不应该在服务器上获取这些数据。

最佳答案

以下是如何获取表格内容的示例:

onPress: function(){
var aTableRows = sap.ui.getCore().byId(this.createId("Listing")).getItems();
console.log("Table rows: ",aTableRows);

for(var i=0; i< aTableRows.length; i++){
console.log("Row "+(i+1)+" cells: ", aTableRows[i].getCells());
var aRowCells = aTableRows[i].getCells();
for(var j=0; j < aTableRows[i].getCells().length; j++){
console.log("Row "+(i+1)+" cell "+(j+1)+" value: ", aRowCells[j].getText());
}
}
}

Here是一个工作示例,数据被打印到控制台。

之后,您可以根据需要设置此数据。

关于javascript - 如何从 SAP UI 中的表中获取数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35797424/

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