所以我有一个简单的应用程序,涉及用于REST实现的Apache CXF。我的其中一项功能需要在将属性值对传递到目标html页面时执行重定向。
export default class myApp extends React.Component{
state = { foo: true };
render(){
return(
<Foo foo={this.state.foo} />
);
}
}
通常,以下方法可以解决问题:
@POST
@Path("some/path")
@Produces("text/html")
javax.ws.rs.core.Response myFunc(@Context HttpServletRequest request, @Context HttpServletResponse response) {
...
// conditional redirect takes place here
return Response.seeOther(new URI("some-uri")).build();
}
但是由于我对REST深有了解,因此我需要以某种方式返回 javax.ws.rs.core.Response 实例。任何帮助将不胜感激!谢谢!