MyShareController
@Before({MyShareValidator.class, RestTime.class}) public void save() { srv.save(getLoginAccountId(), getModel(Share.class)); renderJson(Ret.ok()); }
之前是:Share share接受回来的,这是有什么考虑吗?
Ret ret = srv.save(getLoginAccountId(), getModel(Share.class));
renderJson(ret);
可能是笔误