JQuery を使用して GWT スクリプトを動的に追加し、JQuery 履歴を使用して履歴を追跡しています。
問題: 私の GWT モジュールはHistory
すべて MVP モジュールであるため、私の GWT モジュールはトークンを生成します。そして、 onClick()
s of MenuItem
s は GWT モジュールを動的にロードしています。これに加えて、MenuItems
JQuery を使用するための履歴を追加しています。しかし、私の GWT モジュールも使用しますHistory
。ここでの問題は、MenuItem
ロードするを繰り返しクリックするとGWT MVP modules
、どういうわけかブラウザが攻撃されることです。
コード:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="/newclickmenu/jquery.history.js"></script>
// Contains code which creates menuItems using JSTL. In this menuItem there will be menuItem and *subMenuItem(onclick of menuItem there will be a slideDown which would show subMenuItem
<script type="text/javascript">
jQuery(window).load(function() {
$('body').on('click', '#subMenuItem', function(event) {
// onClick of subMenuItem(which is anchor) then it add the History and will invoke the GWT mvp module.
// After doing the push then below `$.history.on('load change push', function(event, url, type) {` line is called.
$.history.push($(this).attr("href"));
event.preventDefault();
});
$.ajaxSetup({ cache: true });
$.history.on('load change push', function(event, url, type) {
if (event.type == "load") {
if (url.split("!").length < 2) {
window.location = url;
}
} else {
// This code will add the GWT module dynamically.
if (typeof url !== undefined && url !== null && url !== "") {
// Remove the old GWT script and append the new script
var previousModule = $(".mainModule");
if (previousModule.parent().length !== 0) {
$(previousModule).remove();
}
var expectedUrl = "<script class='mainModule' src='/Masters/Masters.cache.js'/>";
$('head').append($(expectedUrl));
}
}
)};
}).listen('hash');
</script>