gpt4 book ai didi

sapui5 - 获取所选项目详细信息

转载 作者:行者123 更新时间:2023-12-01 09:19:48 28 4
gpt4 key购买 nike

我正在使用 sap.m.ObjectListItem 作为我从 API 绑定(bind) JSON 数据的列表项。但是,当我按下某个项目时,我找不到从列表中获取所选项目的方法。即使获得该项目的 key 也会有所帮助。

<List id="ObjectList"
itemPress=".onPressDcData"
items="{DC>/}"
>
<ObjectListItem
type="Active"
title="{DC>Name}"
/>
</List>

最佳答案

以下内容应该放在你各自的 Controller 中(但我猜你已经实现了类似的东西)

onPressDcData: function(oEvent) {
// The actual Item
var oItem = oEvent.getSource();
// The model that is bound to the item
var oContext = oItem.getBindingContext("DC");
// A single property from the bound model
var sName = oContext.getProperty("Name");
}

希望有帮助

关于sapui5 - 获取所选项目详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35477832/

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