- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 KnockoutJS 3.3.0 和原始 Ducksboard gridster 存储库的 0.5.6 版本。我有一个 observableArray 绑定(bind)到我的 gridster ul。我在模板绑定(bind)中使用 afterAdd 和 beforeRemove 回调来跟踪 knockout 何时添加和删除列表中项目的 DOM 节点,以便我可以通知 Gridster。
有趣的是,li 节点永远不会返回到 beforeRemove 回调,以便我正确处理它们。例如,当删除数组中的某个项目时,beforeRemove 回调会为与该项目关联的文本节点触发,但不会为 li 本身触发。有一些方法可以解决这个问题,但这表明 gridster/jquery 和 knockout 跟踪 DOM 的方式之间存在一些不兼容,并且可能至少是我正在跟踪的内存问题的一部分。
在 fiddle 的控制台输出中,您可以看到 li 节点已正确添加,但是当从 knockout 数组中删除对象时,绑定(bind)到 beforeRemove 回调的removeGridster 函数永远不会为 li 节点触发。我已经研究了源代码几个小时,但没有看到任何会导致此问题的内容。
有 knockout/jquery/gridster 专家愿意插话吗?
http://jsfiddle.net/8u0748sb/8/
HTML
<button data-bind='click: add1'> Add 1 </button>
<button data-bind='click: add20'> Add 20 </button>
</button>
<div class="gridster">
<!-- The list. Bound to the data model list. -->
<ul data-bind="template: {foreach: board().widgets, afterAdd: board().addGridster, beforeRemove: board().removeGridster}"
id="board-gridster">
<li data-bind="attr: {'id': id, 'data-row': dataRow, 'data-col': dataCol,'data-sizex': datasizex, 'data-sizey': datasizey}"
class='gs-w'
style='list-style-type: none; background:#99FF99;'>
<div data-bind="click: removeSelected"
style='float:right; cursor: pointer'>
X
</div>
<div data-bind='if: state() === "Minimized"'>
<span data-bind="style:{ 'backgroundColor': color">
-
</span>
</div>
<div data-bind='if: state() === "Maximized"'>
<span data-bind="text: value">
</span>
</div>
</li>
</ul>
</div>
JS
var vm;
$(function() {
vm = new MainViewModel();
ko.applyBindings(vm);
});
function MainViewModel() {
var self = this;
self.board = ko.observable(new BoardViewModel());
self.add1= function() {
self.board().addRandomWidget();
};
self.add20 = function() {
for(var i = 0; i < 20; i++) {
self.add1();
}
};
};
function BoardViewModel () {
var self = this;
// Used for binding to the ui.
self.widgets = ko.observableArray([]);
// Initialize the gridster plugin.
self.gridster = $(".gridster").gridster({
widget_margins : [8, 5],
widget_base_dimensions : [100, 31],
extra_rows: 2,
resize : {
enabled : false
}
}).data('gridster');
self.cols = self.gridster.cols;
self.rows = self.gridster.rows;
/**
* Used as a callback for knockout's afterAdd function. This will be called
* after a node has been added to the dom from the foreach template. Here,
* we need to tell gridster that the node has been added and then set up
* the correct gridster parameters on the widget.
*/
self.addGridster = function (node, index, obj) {
var widget = $(node);
var column = widget.attr("data-col");
console.log('adding: ');
console.log(node);
// afterAdd is called one for each html tag.
// We only want to process it for the main tag, which will have a data-col
// attribute.
if (column) {
// width and height
var sizeX = obj.datasizex;
var sizeY = (obj.state() === "Minimized" || obj.state() === "Closed")? 1 : obj.datasizey;
// add the widget to the next position
self.gridster.add_widget(widget, sizeX, sizeY);
}
};
/**
* Used as a callback for knockout's beforeRemove. Needs
* to remove node parameter from the dom, or tell gridster
* that the node should be removed if it is an li.
*/
var hackPrevWidget = null;
self.removeGridster = function (node, index, widget) {
// TODO this is never called on the li.
console.log("Removing");
console.log(node);
// Only including this so that the widget goes
// away from gridster. We should not have to
// Have this strange hack. Ideally, we
// could check to see if the current node is
// an li and then remove it from gridster,
// but something is preventing it from ever
// being passed in. What is happening to this
// node that causes knockout to lose it?
if (widget !== hackPrevWidget) {
self.gridster.remove_widget($('#' + widget.id));
} else {
node.parentNode.removeChild(node);
}
hackPrevWidget = widget;
};
/**
* Adds a new widget to the knockout array.
*/
self.addRandomWidget = function() {
self.widgets.push(new Widget());
};
/**
* Remove a widget from knockout
*/
self.removeWidget = function(widget) {
self.widgets.remove(widget);
};
};
var ids = 1;
function Widget(args) {
var self = this;
var col, row;
// We keep an id for use with gridster. This must be here if we
// are still using gridster in the widget container.
self.id = ids++;
/*------------- Setup size ------------------*/
self.datasizex = 2;
self.datasizey = 6;
/*------------- Setup position ------------------*/
self.dataRow = 0;
self.dataCol = 0;
self.value = ko.observable(Math.random());
self.state = ko.observable(Math.random() > .5 ? "Maximized" : "Minimized");
self.removeSelected = function () {
vm.board().removeWidget(this);
};
}
最佳答案
我注意到您的代码有两件事:
首先,用于实例化 Gridster 的选择器位于容器 div 上,而不是位于 ul 上,后者应包含表示小部件的 li 元素。因此,li 元素被创建为容器 div 的子元素,而不是 ul 元素,Knockout 在触发 beforeremove 时会报告该元素。现在, beforeremove 回调正在报告正在删除的空白节点,而不是同级 li 节点。更新选择器将解决您的部分问题。
其次,在检查代码时,我发现 ul 元素(定义模板 + foreach 实现)和表示模板内容的 li 元素之间的空格也会导致问题。因此,即使您更正 Gridster 选择器,您仍然只能看到在 beforeremove 回调中报告的空白节点。消除该空格似乎是为了确保在 beforeremove 回调中报告 li 元素而不是空格。
我不是 knockout 专家,因此我无法全面解释其原因,但进行这两项更改可以解决您报告的问题。下面是一个 jsfiddle,其中包含这些更改。样式和 Gridster 配置仍然存在一些问题,但小部件将按预期报告并正确删除。
http://jsfiddle.net/PeterShafer/2o8Luyvn/1/
祝您实现顺利。
HTML
<button data-bind='click: add1'> Add 1 </button>
<button data-bind='click: add20'> Add 20 </button>
</button>
<div class="gridster">
<!-- The list. Bound to the data model list. -->
<ul data-bind="template: {foreach: board().widgets, afterAdd: board().addGridster, beforeRemove: board().removeGridster}"
id="board-gridster"><li data-bind="attr: {'id': id, 'data-row': dataRow, 'data-col': dataCol,'data-sizex': datasizex, 'data-sizey': datasizey}"
class='gs-w'
style='list-style-type: none; background:#99FF99;'>
<div data-bind="click: removeSelected"
style='float:right; cursor: pointer'>
X
</div>
<div data-bind='if: state() === "Minimized"'>
<span data-bind="style:{ 'backgroundColor': color">
-
</span>
</div>
<div data-bind='if: state() === "Maximized"'>
<span data-bind="text: value">
</span>
</div>
</li></ul>
</div>
JS
var vm;
$(function() {
vm = new MainViewModel();
ko.applyBindings(vm);
});
function MainViewModel() {
var self = this;
self.board = ko.observable(new BoardViewModel());
self.add1= function() {
self.board().addRandomWidget();
};
self.add20 = function() {
for(var i = 0; i < 20; i++) {
self.add1();
}
};
};
function BoardViewModel () {
var self = this;
// Used for binding to the ui.
self.widgets = ko.observableArray([]);
// Initialize the gridster plugin.
self.gridster = $(".gridster ul").gridster({
widget_margins : [8, 5],
widget_base_dimensions : [100, 31],
extra_rows: 2,
resize : {
enabled : false
}
}).data('gridster');
self.cols = self.gridster.cols;
self.rows = self.gridster.rows;
/**
* Used as a callback for knockout's afterAdd function. This will be called
* after a node has been added to the dom from the foreach template. Here,
* we need to tell gridster that the node has been added and then set up
* the correct gridster parameters on the widget.
*/
self.addGridster = function (node, index, obj) {
var widget = $(node);
var column = widget.attr("data-col");
console.log('adding: ');
console.log(node);
// afterAdd is called one for each html tag.
// We only want to process it for the main tag, which will have a data-col
// attribute.
if (column) {
// width and height
var sizeX = obj.datasizex;
var sizeY = (obj.state() === "Minimized" || obj.state() === "Closed")? 1 : obj.datasizey;
// add the widget to the next position
self.gridster.add_widget(widget, sizeX, sizeY);
}
};
/**
* Used as a callback for knockout's beforeRemove. Needs
* to remove node parameter from the dom, or tell gridster
* that the node should be removed if it is an li.
*/
//var hackPrevWidget = null;
self.removeGridster = function (node, index, widget) {
// TODO this is never called on the li.
console.log("Removing");
console.log(node);
// Only including this so that the widget goes
// away from gridster. We should not have to
// Have this strange hack. Ideally, we
// could check to see if the current node is
// an li and then remove it from gridster,
// but something is preventing it from ever
// being passed in. What is happening to this
// node that causes knockout to lose it?
//if (widget !== hackPrevWidget) {
// self.gridster.remove_widget($('#' + widget.id));
//} else {
node.parentNode.removeChild(node);
//}
//hackPrevWidget = widget;
};
/**
* Adds a new widget to the knockout array.
*/
self.addRandomWidget = function() {
self.widgets.push(new Widget());
};
/**
* Remove a widget from knockout
*/
self.removeWidget = function(widget) {
self.widgets.remove(widget);
};
};
var ids = 1;
function Widget(args) {
var self = this;
var col, row;
// We keep an id for use with gridster. This must be here if we
// are still using gridster in the widget container.
self.id = ids++;
/*------------- Setup size ------------------*/
self.datasizex = 2;
self.datasizey = 6;
/*------------- Setup position ------------------*/
self.dataRow = 0;
self.dataCol = 0;
self.value = ko.observable(Math.random());
self.state = ko.observable(Math.random() > .5 ? "Maximized" : "Minimized");
self.removeSelected = function () {
vm.board().removeWidget(this);
};
}
关于javascript - Gridster 在 beforeRemove Knockout 回调中阻止 li 节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32279484/
我有一个在页面加载时通过 Ajax 获取的用户数组,并使用 foreach 绑定(bind)列出它们,如下所示: 我希望列表在页面加载时显示,没有我使用 afterAdd 对其应用的 fadeIn(
我在 knockout js 和将可观察数组显示为列表时遇到问题;在 beforeRemove 动画运行时添加项目时,被移除的元素将移动到列表的底部,而不是停留在其位置,直到动画结束并且元素被移除。
我一直在阅读 knockoutjs docs about the template binding 。具体来说,我希望能够 Hook 渲染模板的时刻,以及渲染模板被删除之前的时刻(例如,通过更改绑定(
我在尝试使用 jquery 动画时面临一些挑战,例如 fadeIn() fadeOut() with knockout。 没有动画的实例:http://jsfiddle.net/LkqTU/23801
我在让 KnockoutJs beforeRemove 和 afterAdd 处理程序触发时遇到了一些问题。 这是相关的代码片段 function viewModel(list) { var
我试图阻止用户在 React Native 中录制视频时通过 Android 后退按钮或手势返回。根据 documentation对于 React Navigation,应该使用 beforeRemo
使用 KnockoutJS 3.3.0 和原始 Ducksboard gridster 存储库的 0.5.6 版本。我有一个 observableArray 绑定(bind)到我的 gridster
我正在使用 foreach 绑定(bind)和 beforeRemove 回调,以便为我的列表项的删除设置动画。当我移除之前移除的项目上方的项目时,它工作正常,但是当我尝试移除之前移除的项目下方的项目
我的 KnockoutJS 模板如下所示: 当我从 cars() observableArray 中移除一个对象时,我想 hide() 和 remove() 被移除的元素。除了删除元素
我注意到 tabpanel的 beforeremove和 panel的 beforeclose和 close没有开火。另一方面destroy事件进行得很好。是否有任何解决方法或具有相同结果的不同事件?
我正在尝试实现 Adrian Brown 非常好的 Outlook Add-In code 3 次中有 2 次有效。 ItemAdd 和 ItemChange 事件按预期触发,但 MAPIFolder
我是一名优秀的程序员,十分优秀!