gpt4 book ai didi

data-binding - zkoss MVVM 更改为模型强制网格重新加载

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

我正在使用 ZKOSS MVVM。
所以在 View 中我使用了一个列表框,它被绑定(bind)(@load)到 ViewModel 中的一个列表模型对象。

如果我更改模型,我从文档中了解的内容

1:从索引 0 处的 View 模型中添加一个对象到列表模型

I should see the latest object be appended at top of the Listbox.

2:从模型中删除一个项目
I should see that particular row from Listbox be removed.

注意:这是一个类似于社交网络的界面,例如当有人创建帖子并将新帖子附加到帖子列表时的 Facebook 墙。如果删除帖子,则仅从列表中删除该帖子

好吧,它确实发生了(新项目被追加/删除的项目被删除)但整个列表框重新加载,而不仅仅是添加或删除的特定行。

这是为什么?为什么 Listbox 在列表模型更改时完全重新加载。

任何的想法?

以下是代码片段(用例:添加新帖子适用。在创建新帖子时,每次都会重新加载整个列表框):

查看
<z:div style="height: 100%; padding: 0px; margin: 0px;" apply="org.zkoss.bind.BindComposer"
viewModel="@id('want_vm') @init('want.WantDesktopVM')">
<z:div zclass="content">
<g:render template="../css/list/noEffectList"></g:render>
<z:div hflex="1" width="100%" visible="@load(want_vm.toggleInput)" style="margin-bottom: 5px; padding: 5px">
<z:vbox>
<z:textbox id="postInput" multiline="true" value="" width="690px" height="50px"/>
<z:div hflex="1" width="100%" style="text-align: right; padding-right: 5px">
<z:button label="Post" zclass="button rect theme" onClick="@command('post', text=postInput.value)"/>
</z:div>
</z:vbox>
</z:div>
<z:listbox model="@load(want_vm.posts)" emptyMessage="No new posts found." style="border:none;">
<z:template name="model" var="iwant">
<listitem style="margin-top: 10px">
<listcell>
<hbox hflex="true">
<div zclass="dpFrame small">
<image height="50px" width="50px" content="@load(iwant.from) @converter('converter.UserActorDisplayPicConverter')" />
</div>
<vbox hflex="true" zclass="post">
<hbox hflex="true">
<label value="@load(iwant.from) @converter('converter.ActorDisplayNameConverter')" zclass="displayName"/>
</hbox>
<hbox hflex="true">
<label value="@load(iwant.textData)" zclass="post_data" multiline="true" maxlength="25"/>
</hbox>
<hbox>
<label value="@load(iwant.dateCreated) @converter('converter.SinceDateConverter')" zclass="since"/>
</hbox>
</vbox>
</hbox>
</listcell>
</listitem>
</z:template>
</z:listbox>
</z:div>

查看型号
class WantDesktopVM {
UserActorManagerService userActorManagerService
ActivityManagerService activityManagerService

UserActor me
UserActor profile

String error = null
String view = 'iwant'

@Wire
Textbox postInput

private List<Activity> posts = []

@Init
public void init(@ContextParam(ContextType.COMPONENT) Component component,
@ContextParam(ContextType.VIEW) Component view) {
profile = Executions.current.getAttribute("profile")
me = Executions.current.getAttribute("me")
loadPosts()
}

@AfterCompose
public void afterCompose(@ContextParam(ContextType.VIEW) Component view) {
Selectors.wireComponents(view, this, false);
}

public boolean isMyProfile() {
return me.id == profile.id
}

public UserActor getMe() {
return this.me
}

public boolean isToggleInput() {
return this.view == 'iwant' && isMyProfile()
}

public List<Activity> getPosts() {
println "Getting posts ...${posts.size()}"
return this.posts
}

private List<Activity> loadPosts() {
if(view == 'iwant') {
posts = Activity.createCriteria().list() {
eq 'from', profile
eq 'type', ACTIVITY_TYPE.WANT
order("lastUpdated", "desc")
}
} else {
posts = ActorActivitySpace.createCriteria().list() {
projections {property("activity")}
eq 'actor', profile
activity {
ne 'from', profile
eq 'type', ACTIVITY_TYPE.WANT
}
order("lastUpdated", "desc")
}
}
return posts
}

@NotifyChange(['posts', 'toggleInput'])
@Command
public void render(@BindingParam('view') String view) {
println "Changing view ..."
this.view = view
loadPosts()
}

@NotifyChange('posts')
@Command
public void post(@BindingParam('text') String text) {
println "Posting text: $text"
postInput.setValue("")
if(text) {
Activity want = activityManagerService.want(me.id, text)
println"Want ID : $want.id"
posts.addAll(0, [want])
}
}

}

最佳答案

您使用 @NotifyChange('posts')告诉 ZK 整个列表已经改变。网格不会尝试检查列表,它只是替换其当前的 ListModel使用新列表-> 完全重新加载。

如果你不想这样,你将不得不使用 ListModel 的方法。网格用于更新 ui。这样,网格将准确地知道哪些行发生了变化,并且只更新那些行。

[编辑] 要实现您想要的,请替换 List<Activity> postsListModelList<Activity> posts = new ListModelList<Activity>()
当事件发生变化时,您必须更新此列表(即调用 add()addAll() )以更新各个行。您不能再从数据库中加载所有内容,您必须将数据库中的更改与现有列表合并。

关于data-binding - zkoss MVVM 更改为模型强制网格重新加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13957832/

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