gpt4 book ai didi

GWT 将脚本元素注入(inject)到 html 文件中

转载 作者:行者123 更新时间:2023-12-03 15:22:40 25 4
gpt4 key购买 nike

在我的 gwt 项目上。我有一个调用字典的脚本:

<script type="text/javascript" src=conf/iw_dictionary.js></script>

而不是在 html 文件中编写此脚本元素。我想在模块加载时从入口点将它注入(inject)到 html 中。

我该怎么做?

最佳答案

使用com.google.gwt.core.client.ScriptInjector ,因为它是专门为这样的东西创建的

ScriptInjector.fromUrl("conf/iw_dictionary.js").setCallback(
new Callback<Void, Exception>() {
public void onFailure(Exception reason) {
Window.alert("Script load failed.");
}
public void onSuccess(Void result) {
Window.alert("Script load success.");
}
}).inject();

关于GWT 将脚本元素注入(inject)到 html 文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9051955/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com