由于GSON(GWT JSON-RPC)遇到了几个问题,我想切换到Resty-GWT。以下示例展示了我的旧设置,下面是我尝试转移。
这是我设置的代理发送的JSON数据:
{"id": 1, "result": ["Planets", "Stars"], "error": null}
进行异步调用的类:
import com.google.gwtjsonrpc.common.AsyncCallback;
import com.google.gwtjsonrpc.common.RemoteJsonService;
import com.google.gwtjsonrpc.common.RpcImpl;
@RpcImpl(version=RpcImpl.Version.V2_0,transport=RpcImpl.Transport.HTTP_POST)
public interface ControlService extends RemoteJsonService
{
public void connectedNames( String [] Names, AsyncCallback<String[]> callback ); //FirstExample
}
这是实际调用和接收数据的类:
import com.google.gwtjsonrpc.common.AsyncCallback;
public class createPanel implements ChangeHandler{
public mainPanel(){
//Some code setting up the panels
service_ = GWT.create(ControlService.class);
((ServiceDefTarget) service_).setServiceEntryPoint("http://localhost:3900/services/ControlProxy.py"); //Directs GWT to the proxy
service_.connectedNames( new String[0], new AsyncCallback<String[]>() {
public void onSuccess( String[] result)
{
//I now play with the data
}
public void onFailure(Throwable why)
{
myList_.addItem( "Server error!" );
}
});
}
}
我的尝试:
import javax.ws.rs.Path;
import org.fusesource.restygwt.client.MethodCallback;
import org.fusesource.restygwt.client.RestService;
@Path("http://localhost:3900/services/ControlProxy.py")
@POST
public interface testService extends RestService {
public void connectedNames( String [] Names, MethodCallback<String[]> callback );
}
public class createPanel implements ChangeHandler{
public mainPanel(){
//Some code setting up the panels
service_ = GWT.create(testService.class);
testService.connectedNames(cbcNames, callback);//how to extract data from this
}
答案 0 :(得分:1)
我认为您忘记了回调的实现(也许它在您的代码中的其他位置,在这种情况下,将它发布在您的问题中会很有用)。
MethodCallback是一个需要实现的接口(如果你想要匿名)
所以你需要像
这样的东西testService.connectedNames(cbcNames, new MethodCallback<String[]>(){
//onSuccess
//onFailure
);
现在当你说
这是我设置的代理发送的JSON数据:{“id”:1,“result”:[“Planets”,“Stars”],“error”:null}
你的意思是,当你发布某些东西时,它是来自服务器的答案,还是你发布到服务器上的答案?
在这两种情况下,此对象看起来都不像String []。在您的restService中,您声明将String []作为有效负载Names
发送,并且您声明在响应返回时将检索String []。
您可以查看本教程以获取更多帮助:http://ronanquillevere.github.io/2014/03/16/gwt-rest-app.html