1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. jquery中EasyUI同步樹的實現(xiàn)代碼

        時間:2020-11-10 14:26:04 jQuery Mobile 我要投稿

        jquery中EasyUI同步樹的實現(xiàn)代碼

          在JS中,將顯示樹的`url地址寫成control的地址即可.

          代碼如下:

          @RequestMapping(value = "/tree")

          public void tree(HttpServletRequest request, HttpServletResponse response) throws IOException {

          this.writeJson(response, bookService.getTree());

          }

          dao:

          復制代碼 代碼如下:

          /**

          * 獲取樹

          */

          @Override

          public ListgetTree(){

          try {

          Listtrees = new ArrayList();

          Listroot = this.search(0);

          if(root != null && root.size() > 0){

          for(TBookType tb : root){

          Tree rootnode = this.getNode(tb);

          rootnode.setState("open");

          trees.add(rootnode);

          }

          }

          return trees;

          } catch (Exception e) {

          e.printStackTrace();

          return null;

          }

          }

          /**

          * 遞歸

          */

          private Tree getNode(TBookType node){

          if(node == null){

          return null;

          }

          try {

          Tree treenode = new Tree();

          treenode.setId(String.valueOf(node.getId()));

          treenode.setText(node.getName());

          treenode.setPid(String.valueOf(node.getPid()));

          Listchildren = this.search(node.getId());

          if(children != null && children.size() > 0){

          treenode.setState("closed");

          for(TBookType child : children){

          Tree childnode = this.getNode(child);

          if(childnode != null){

          treenode.getChildren().add(childnode);//遞歸

          }

          }

          }

          return treenode;

          } catch (Exception e) {

          throw new BusinessException("獲取數(shù)據(jù)出錯!", e);

          }

          }

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>