访问ViewModel中的对象属性时遇到问题。我没有达到目的地错误。有什么指针吗?感谢。
错误消息:
目标无法访问,'toto'返回null
基本上,当我填写文本框并单击窗口中的某个位置时,我会收到错误。当我使用其他ViewModel的属性(它是一个String)时,它可以正常工作。
设定:
我使用JBoss Studio。该应用程序在JBoss AS 7上运行。基本上我按照本指南http://books.zkoss.org/wiki/ZK_Installation_Guide/Quick_Start/Create_and_Run_Your_First_ZK_Application_with_Eclipse_and_Maven创建我的项目。
Zul文件:
<window apply="org.zkoss.bind.BindComposer"
viewModel="@id('vm') @init('com.maylab.fault.TicketsViewModel')"
title="Trouble Ticket" width="600px" border="normal">
<hbox style="margin-top:20px">
<textbox value="@save(vm.toto.name)"></textbox>
<label value="@load(vm.toto.name)"></label>
</hbox>
</window>
视图模型:
package com.maylab.fault;
import org.zkoss.bind.annotation.*;
import com.maylab.fault.Person;
public class TicketsViewModel {
private String ticket;
private String test;
private Person toto;
public Person getToto() {
return toto;
}
public void setToto(Person toto) {
this.toto = toto;
}
public String getTest() {
return test;
}
public void setTest(String test) {
this.test = test;
}
public String getTicket() {
return ticket;
}
public void setTicket(String ticket) {
this.ticket = ticket;
}
}
人员类:
package com.maylab.fault;
public class Person {
private String name;
public Person(){
}
public Person(String name){
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
答案 0 :(得分:2)
如果你要检查你的viewmodel,你现在已经用private Person toto;
编写了这段代码get/set
和toto=null
方法,所以要解决这个问题,你必须像这样更改你的代码
private Person toto = new Person();
这将解决您的问题。