52

我已经实现了一个淘汰赛 foreach 绑定,在同一页面中有多个模板,这里给出了一个示例,我感兴趣的是找出一个块何时完成渲染,我尝试过afterRenderand afterAdd,但我猜它运行每个元素,而不是在整个循环完成之后。

<ul data-bind="foreach: {data: Contacts, afterAdd: myPostProcessingLogic}">
  <li>
    <div class="list_container gray_bg mrgT3px">
      <div class="list_contact_icon"></div>
      <div class="contact_name"><span data-bind="text: first_name"></span> <span data-bind="text: last_name"></span></div>
      <div class="contact_number"><span data-bind="text: value"></span></div>
      <div class="callsms_container">
        <a href="#notification-box" class="notifcation-window">
          <div class="hover_btn tooltip_call">
            <div class="hover_call_icon"></div>
            <span>Call</span></div>
        </a>
        <a class="sendsms" href="#sendsms" rel="#sendsms">
          <div class="hover_btn tooltip_sms">
            <div class="hover_sms_icon"></div>
            <span>SMS</span></div>
        </a>
        <a href="#">
          <div class="hover_more_btn"></div>
        </a>
      </div>
      <!-- close callsms container -->
      <div id="notification-box" class="notification-popup">
        <a href="#" class="close"><img class="btn_close" src="images/box_cross.png" /></a> <img class="centeralign" src="images/notification_call.png" /> <span>Calling... +44 7401 287366</span> </div>
      <!-- close notification box -->
      <!-- close list gray bg -->
      <div class="tooltip_description" style="display:none" id="disp"> asdsadaasdsad </div>
    </div>
  </li>
</ul>

当循环完成渲染时,我有兴趣找出成功回调。

这是我的afterAdd函数,它基本上附加了一些jQuery事件,没什么。

myPostProcessingLogic = function(elements) { 
  $(function(){
      $(".list_container_callog").hover(function(){  
          $(".callsms_container", this).stop().animate({left:"0px"},{queue:false,duration:800});
      }, function() {
          $(".callsms_container", this).stop().animate({left:"-98%"},{queue:false,duration:800});
      });
  });
}

提前谢谢,告诉我有一个成功回调:)

4

8 回答 8

71

你有afterRender回调knockout.js

foreach: { data: myItems, afterRender: renderedHandler }

这是文档。

在您的处理程序中检查渲染集合的长度是否等于项目集合的长度。如果不是,请不要执行您打算使用的完整呈现逻辑。

renderedHandler: function (elements, data) {
    if ($('#containerId').children().length === this.myItems().length) {
        // Only now execute handler
    }
}
于 2013-01-10T09:19:48.037 回答
12

尝试ul

<div data-bind='template: {afterRender: myPostProcessingLogic }'>

它只会在第一次渲染模板中的所有内容时起作用。但是您只会接到对 myPostProcessingLogic 的一次调用。这是一个小提琴

<div data-bind='template: {afterRender: myPostProcessingLogic }'>
  <ul data-bind="foreach: Contacts">
    <li>
      <div class="list_container gray_bg mrgT3px">
        <div class="list_contact_icon"></div>
        <div class="contact_name"><span data-bind="text: first_name"></span> <span data-bind="text: last_name"></span></div>
        <div class="contact_number"><span data-bind="text: value"></span></div>
        <div class="callsms_container">
          <a href="#notification-box" class="notifcation-window">
            <div class="hover_btn tooltip_call">
              <div class="hover_call_icon"></div>
              <span>Call</span></div>
          </a>
          <a class="sendsms" href="#sendsms" rel="#sendsms">
            <div class="hover_btn tooltip_sms">
              <div class="hover_sms_icon"></div>
              <span>SMS</span></div>
          </a>
          <a href="#">
            <div class="hover_more_btn"></div>
          </a>
        </div>
        <!-- close callsms container -->
        <div id="notification-box" class="notification-popup">
          <a href="#" class="close"><img class="btn_close" src="images/box_cross.png" /></a> <img class="centeralign" src="images/notification_call.png" /> <span>Calling... +44 7401 287366</span> </div>
        <!-- close notification box -->
        <!-- close list gray bg -->
        <div class="tooltip_description" style="display:none" id="disp"> asdsadaasdsad </div>
      </div>
    </li>
  </ul>
</div>
于 2014-04-11T15:19:21.257 回答
5

Chuck Schneider 上面的回答是最好的。我不得不使用无容器控件,因为 foreach 位于 tbody 元素上:

<!-- ko template: {afterRender: SetupCheckboxes } -->
<tbody data-bind="foreach: selectedItems" id="gridBody">
  <tr>
    <td>
      <input type="checkbox" />
    </td>
  </tr>
</tbody>
<!-- /ko -->
于 2016-09-06T05:15:00.957 回答
4

只需使用 Knockout 的无容器方法将 foreach 包装到另一个 foreach 循环中,如下所示:

<!-- ko foreach:{data: Contacts, afterRender: myPostProcessingLogic }-->
<ul data-bind="foreach: $data}">
  <li>
    <div class="list_container gray_bg mrgT3px">
      <div class="list_contact_icon"></div>
      <div class="contact_name"><span data-bind="text: first_name"></span> <span data-bind="text: last_name"></span></div>
      <div class="contact_number"><span data-bind="text: value"></span></div>
      <div class="callsms_container">
        <a href="#notification-box" class="notifcation-window">
          <div class="hover_btn tooltip_call">
            <div class="hover_call_icon"></div>
            <span>Call</span></div>
        </a>
        <a class="sendsms" href="#sendsms" rel="#sendsms">
          <div class="hover_btn tooltip_sms">
            <div class="hover_sms_icon"></div>
            <span>SMS</span></div>
        </a>
        <a href="#">
          <div class="hover_more_btn"></div>
        </a>
      </div>
      <!-- close callsms container -->
      <div id="notification-box" class="notification-popup">
        <a href="#" class="close"><img class="btn_close" src="images/box_cross.png" /></a> <img class="centeralign" src="images/notification_call.png" /> <span>Calling... +44 7401 287366</span> </div>
      <!-- close notification box -->
      <!-- close list gray bg -->
      <div class="tooltip_description" style="display:none" id="disp"> asdsadaasdsad </div>
    </div>
  </li>
</ul>
<!-- /ko -->
于 2014-06-13T08:09:49.430 回答
1

上面的解决方案效果很好。此外,如果您需要使用 foreach "as" 选项,您可以这样做:

data-bind="foreach: { data: myItems, afterRender: renderedHandlet, as: 'myItem'}">
于 2014-02-10T20:22:08.330 回答
1

在 3.5 版本中,Knockout 提供事件来通知节点的内容何时被绑定

HTML

<div data-bind="childrenComplete: bindingComplete">...</div>

JavaScript

function bindingComplete(){
...
}

如果您在封装所有子数据绑定表达式的 DOM 中的某个点创建事件绑定表达式,那么它就等同于页面绑定完成事件

参考 https://knockoutjs.com/documentation/binding-lifecycle-events.html

于 2019-10-15T19:46:27.750 回答
0

我最近刚刚提出了一个带有淘汰赛的拉取请求,要求他们添加两个事件以在绑定中定义,展开,然后在渲染项目之前和渲染所有项目之后调用正确的位置。我没有收到他们的任何回复,但这正是您想要做的,但您不必编写 hacky 代码即可使其正常工作。我很惊讶以前没有人提出过这个要求。我使用添加到源中的这些回调来销毁和重新初始化淘汰赛绑定的 jquery 数据表。这是最简单的解决方案。我在网上看到了很多尝试不同的方法,但这是最简单的解决方案。

拉取请求:-> pr 1856

ko.bindingHandlers.DataTablesForEach = {

  init: function(element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) {
    var nodes = Array.prototype.slice.call(element.childNodes, 0);
    ko.utils.arrayForEach(nodes, function(node) {
      if (node && node.nodeType !== 1) {
        node.parentNode.removeChild(node);
      }
    });
    return ko.bindingHandlers.foreach.init(element, valueAccessor, allBindingsAccessor, viewModel, bindingContext);
  },
  update: function(element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) {

    var value = ko.unwrap(valueAccessor()),
      key = "DataTablesForEach_Initialized";

    var newValue = function() {
      return {
        data: value.data || value,
        beforeRenderAll: function(el, index, data) {

          if (ko.utils.domData.get(element, key)) {

            $(element).closest('table').DataTable().destroy();
          }
        },
        afterRenderAll: function(el, index, data) {
          $(element).closest('table').DataTable(value.options);
        }
      };
    };

    ko.bindingHandlers.foreach.update(element, newValue, allBindingsAccessor, viewModel, bindingContext);

    //if we have not previously marked this as initialized and there is currently items in the array, then cache on the element that it has been initialized
    if (!ko.utils.domData.get(element, key) && (value.data || value.length)) {
      ko.utils.domData.set(element, key, true);
    }

    return {
      controlsDescendantBindings: true
    };
  }
};

淘汰赛数据表 JSFiddle

于 2015-06-05T17:41:28.377 回答
0

在 knockout.js 中尝试afterRenderAll回调:

foreach:{数据:myItems,afterRenderAll:myPostProcessingLogic}

于 2017-12-17T22:07:28.550 回答