我一直在尝试将零剪贴板库与 gwt 代码集成如下。
测试.html
<script type="text/javascript" language="javascript" src="test/test.nocache.js"></script>
<script type="text/javascript" src="ZeroClipboard.js"></script>
<script language="text/javascript">
function initZeroClipboard() {
ZeroClipboard.setMoviePath('ZeroClipboard.swf');
}
</script>
.....................................
//Intial body load instantiating 'Moviepath'
<body onload="initZeroClipboard();">
TestWidget.java
Anchor copy = new Anchor("Copy");
......................
//setting id to refer the movie
copy.getElement().setId("copyId");
glueCopy("Hello World");
...........
//Native method
public static native void glueCopy(String text) /*-{
var clip = new $wnd.ZeroClipboard.Client();
clip.setText(text);
clip.glue('copyId');
}-*/;
但是在初始加载本身时,我在 IE 和 FF 中收到以下错误。
码头服务器 IE 错误
码头服务器FF错误
我从以下https://github.com/jonrohan/ZeroClipboard下载了“ZeroClipboard.swf”和“ZeroClipboard.js”文件
任何人都可以遇到这个问题,如果是这样,请建议我如何摆脱这个问题。