我是新来玩,每当我使用list.add(Object)到列表并打印列表的大小时,它仍然是0!在播放框架中添加一个对象到列表中
我的方法是像一个教程,它会检查登录用户是否喜欢此教程,如果是的话,它会将教程的likeCount加1,然后将教程添加到用户列表中。如果不是,则表示他已经喜欢它。 由于教程没有保存在列表中,我无法检查它是否已经被喜欢或不是!
型号:
@Entity
public class RegisteredUser extends Model {
public String name;
@ManyToMany
public List<Tutorial> contributedTutorials;
public RegisteredUser(String name) {
this.name = name;
this.likeList = newArrayList<Tutorial>();
this.save();
}
}
@Entity
public class Tutorial extends Model {
public String Title;
public int likeCount;
public Tutorial(String title) {
this.title = title;
this.likeCount = 0;
}
控制器: 公共教程延伸控制器{ 公共静态无效likeTutorial(){
if (session.get("RegisteredUserId") != null && session.get("tutID") != null) {
{
long uId = Long.parseLong(session.get("RegisteredUserId"));
RegisteredUser user = RegisteredUser.findById(uId);
long tId = Long.parseLong(session.get("tutID"));
Tutorial tut = Tutorial.findById(tId);
int x = tut.likeCount;
x++;
if (!(user.likeList.contains(tut)))
// to check that this user didn't like this tut before
{
Tutorial.em().createQuery("update Tutorial set likeCount ="+ x +" where id=" +tId).executeUpdate();
tut.refresh();
user.updateLikeList(tut); // THIS IS NOT WORKING!!!
renderText("You have successfully liked this Tutorial " + user.likeList.size());
}
}
renderText("Opps Something went Wrong!!");
}
}
}
的视图:
<a href="@{Tutorials.likeTutorial()}">Like </a>
哪里的失败,user.updateLikeList(啧)的部分的代码; ? – 2012-04-27 11:51:01
@Pere Villega是的! – 2012-05-04 22:42:56
@OHAssan我的意思是,我们需要看到user.updateLike的代码,因为这就是在这里失败 – 2012-05-04 23:04:21