我有一个注册功能,可以在我的应用程序中向用户发送确认电子邮件,我想做类似以下的事情:
import static ASpecifications.*;
import static org.springframework.data.jpa.domain.Specifications.*;
public class YourService {
// autowire repository
public Page<A> filter(String opt1,String opt2,Pageable pageable){
Specifications<A> spec = null;
if(opt1!=null){
spec = where(findByOption1(opt1));
}
if(opt2!=null){
spec spec == null ? where(findByOption2(opt2)) : spec.and (findByOption2(opt2));
}
repository.findAll(spec,pageabl);
}
}
我知道这不起作用,但我认为它证明了我想要的东西。我正在使用AngularJS,这就是我需要将JSON呈现给客户端的原因。我怎么能最好地完成这个?
答案 0 :(得分:0)
没有办法让浏览器以某种方式在请求中转发响应正文数据。然而,有多种方法可以实现您的目标: