Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在用着
smartGWT手机
作为前端,
从客户端 UI 我正在进行 rpc 调用作为回报,我需要记录列表。
如果我使用记录列表,它会抛出一个编译错误,说没有导入或找到记录列表包。我需要它以记录列表的形式。例如,我必须根据文件名搜索文件,因此结果应包含文件名、日期和大小。请帮助提前谢谢
在我看来Records是客户端对象,你的 rpc 应该返回Serializable对象并进入异步callback你设置你的记录的不同属性与来自服务器的对象中的对应值。例如在您的 RPC 中:
Records
Serializable
callback
MySerializableType[] thesNodes = new MySerializableType[size]; ........ return theNodes;
和其他地方:
public class MySerializableType implements IsSerializable {