我一直想弄清楚我的
有什么问题@Inject
@DataField
FlowPanel panel;
// Here's the REST callback:
public void onSuccess(StuffResultItemDTO stuffResultItem) {
for (StuffItemDTO item : stuffResultItem.getStuff()) {
LOG.info(item.toString()); // No problem data is here
ResultItem w = resultInstance.get();
w.setModel(item);
panel.add(w);
}
// Producer
stuff.setCursor(stuffResultItem.getCursor());
}
这已成为我的问题已有一段时间了。问题是,如果我在FlowPanel
中手动添加了小部件,则会显示。
因此面板真的可以将小部件注入其中(比如手动添加ResultItem)。
这里真正的痛苦是for循环代码和ResultItem
注入。