我是 GWT 和 Javascript 的新手。
我正在尝试将 java int[] 发送到我的 javascript 函数。我正在使用 gwt-exporter 为我处理处理。这就是我设置的方式。
static class gwtExplorerTest implements Exportable {
@Export("$wnd.handleAnchorClick")
public static void handleAnchorClick(int param1, int param2 , int[] a1 , int[] a2)
{
//process things here
}
}
有人可以帮我用javascript代码传入我需要的数组吗?我目前拥有的是:
href="javascript:window.handleAnchorClick(" + currentRow + "," + currentColumn + "," + rowVals + "," + colVals + ",") "
作为我的 JS 函数调用,其中 rowVals 和 colVals 是我需要传入的两个数组。它似乎不起作用。有人可以帮我吗?
谢谢