1

struts 2 jQuery 插件有一个内置的publish/subscribe框架。

如果您定义自己的发布和订阅事件(例如在网格上),则每次发布事件时都会调用订阅函数。有关详细信息,请参阅(Struts 2 jQuery Subscribe 被多次调用

为了防止这种情况,有一种isSubscribed方法可以使用。

对于网格为:

<sjg:grid id="gridtable" 
        onBeforeTopics="before_grid_load" >

JS 将是:

$.subscribe('before_grid_load', function(event, data) {     

    if ( $('#gridtable').isSubscribed('before_grid_load') ){
      return ;    
    }
//go on with function
}

问题是每次都$('#gridtable').isSubscribed('before_grid_load')退货!false

4

2 回答 2

2

该函数isSubscribed应用于元素$('#gridtable')但订阅了$(document). 我已经用最后一个元素进行了测试,但它对我不起作用。但是尝试使用第一个元素并且它起作用了。

脚本:

<head>
  <link href="<s:url value="/css/template_styles.css"/>" type="text/css" rel="stylesheet">
  <sj:head />
  <title>jQuery Grid</title>
  <script type="text/javascript">
    $(document).ready(function(){
    console.log("Before subscribe");
    $("#gridtable").subscribe("beforeTopic", function(topic, data) {
      console.log('Topic: '+data, topic);
      if ( $("#gridtable").isSubscribed("beforeTopic") ){
        console.log('Subscribed: '+data, topic);
        return;
      }
      //go on with function
      console.log('Not subscribed: '+data, topic);
    });
    console.log("After subscribe");
    });
    </script>
</head>

对于网格:

<sjg:grid id="gridtable" 
        onBeforeTopics="beforeTopic" >
于 2014-05-17T14:28:19.490 回答
0

检查你的库到你的jsp

<%@ taglib prefix="sjg" uri="/struts-jquery-grid-tags"%>

在你的 Head 标签中启用 jQuery Grid 插件

 <sj:head jqueryui="true" jquerytheme="redmond" />
于 2014-05-17T07:50:43.193 回答