当我想在 GWT 中添加 LineChart 小部件时出现此错误:“无法读取属性 '0' of null”
事实上,我在工作中编写了这个程序,它运行起来没有任何问题。但是,它不能在我个人中运行(尽管我使用相同的库和环境)。当我只需单击 createChartButton 时,我的图表就会出现在工作中。但是这个错误出现在我的个人电脑中。我想念的错误是什么?
TestChart.ui.xml:
<g:Button ui:field="createChartButton" text="Create Chart" />
<g:VerticalPanel ui:field="chartPanel" visible="false" />
ChartView.java:
@UiHandler("createChartButton")
public void onCreateChartButtonClick(ClickEvent event){
if(presenter != null){
chart = presenter.onCreateChartButtonClicked(event); // Prepares a line chart and returns it.
this.chartPanel.clear();
this.chartPanel.add(chart);
this.chartPanel.setVisible(true);
}
}