1

我是 Javascript 新手,正在尝试将 Gridster 与 Knockout 一起使用。我有一个包含项目的数据库,我使用淘汰赛 foreach 将它们绑定到 UL。UL 使用 Gridster 库进行样式设置。除非我尝试通过视图模型中的 ObservableArray 向 UL 添加其他元素,否则一切都很好。

谁能帮我理解这里的操作范围和顺序?感觉 Gridster 库并没有对新的小部件进行样式设置。

jsfiddle 显示了该问题的工作演示。请注意,当您双击一个小部件时,它会创建一个新小部件,但不会将其放置在网格中。相反,它只是挂在后面。

这是HTML

   <div class="gridster">
        <ul data-bind="foreach: myData">
            <li data-bind="attr:{

              'data-row':datarow,
              'data-col':datacol,
              'data-sizex':datasizex,
              'data-sizey':datasizey

        },text:text, doubleClick: $parent.AddOne"></li>
        </ul>
    </div>

这是Javascript

//This is some widget data to start the process
var gridData = [ {text:'Widget #1', datarow:1, datacol:1, datasizex:1, datasizey:1},
    {text:'Widget #2', datarow:2, datacol:1, datasizex:1, datasizey:1},
    {text:'Widget #3', datarow:1, datacol:2, datasizex:1, datasizey:1},
    {text:'Widget #4', datarow:2, datacol:2, datasizex:1, datasizey:1}];

// The viewmodel contains an observable array of widget data to be 
//    displayed on the gridster
var viewmodel = function () {

    var self = this;
    self.myData = ko.observableArray(gridData);
    //AddOne adds an element to the observable array 
    //   (called at runtime from doubleClick events)
    self.AddOne = function () {
        var self = this;
        myViewModel.myData.push({
            text: 'Widget Added After!',
            datarow: 1,
            datacol: 1,
            datasizex: 1,
            datasizey: 1
        });
    };

};


var myViewModel = new viewmodel();
ko.applyBindings(myViewModel);

$(".gridster ul").gridster({
    widget_margins: [5, 5],
    widget_base_dimensions: [140, 140]
});
4

4 回答 4

2

这是JSfiddle中的完整示例。在这里,我只强调了删除功能

self.deleteOne = function (item) {
    console.log(item);
    var widget = $("#" + item.id);
    console.log(widget);
    var column = widget.attr("data-col");
    if (column) {
        console.log('Removing ');
        // if this is commented out then the widgets won't re-arrange
        self.gridster.remove_widget(widget, function(){
            self.myData.remove(item);
            console.log('Tiles: '+self.myData().length);                
        });
    }
};

从可观察数组中移除元素的工作在 remove_widget 回调中完成。请参阅 gridster 的文档。因此,在删除小部件之前执行的 removeGridster 钩子不再需要执行实际的 remove_widget 调用。

于 2014-06-21T21:34:52.617 回答
1

这是一个我认为更符合 MVVM 模式的可行解决方案:

http://jsfiddle.net/Be4cf/4/

//This is some widget data to start the process
var gridData = [
    {id: "1", text:'Widget #1', datarow:1, datacol:1, datasizex:1, datasizey:1},
    {id: "2", text:'Widget #2', datarow:1, datacol:2, datasizex:2, datasizey:1},
    {id: "3", text:'Widget #3', datarow:1, datacol:4, datasizex:1, datasizey:1},
    {id: "4", text:'Widget #4', datarow:2, datacol:1, datasizex:1, datasizey:2}];

// The viewmodel contains an observable array of widget data to be 
//    displayed on the gridster
var viewmodel = function () {

    var self = this;
    self.myData = ko.observableArray(gridData);
    self.nextId = 5;
    self.gridster = undefined;

    // AddOne adds an element to the observable array.
    // Notice how I'm not adding the element to gridster by hand here. This means  
    // that whatever the source of the add is (click, callback, web sockets event), 
    // the element will be added to gridster.
    self.addOne = function () {
    myViewModel.myData.push({
            text: 'Widget Added After!',
            datarow: 1,
            datacol: 1,
            datasizex: 1,
            datasizey: 1,
            id: self.nextId++
        });
    };

    // Called after the render of the initial list.
    // Gridster will add the existing widgets to its internal model.
    self.initializeGridster = function() {
        self.gridster = $(".gridster ul").gridster({
            widget_margins: [5, 5],
            widget_base_dimensions: [140, 140]
        }).data('gridster');
    };

    // Called after the render of the new element.
    self.addGridster = function(data, object) {
        // This bypasses the add if gridster has not been initialized.
        if (self.gridster) {
            var $item = $(data[0].parentNode);

            // The first afterRender event is fired 2 times. It appears to be a bug in knockout.
            // I'm pretty new to knockout myself, so it might be a feature too! :)
            // This skips the second call from the initial fired event.
            if (!$item.hasClass("gs-w"))
            {
                // This removes the binding from the new node, since gridster will re-add the element.
                ko.cleanNode(data[0].parentNode);
                // Adds the widget to gridster.
                self.gridster.add_widget($item);
                // We must update the model with the position determined by gridster
                object.datarow = parseInt($item.attr("data-row"));
                object.datacol = parseInt($item.attr("data-col"));
            }
        }
    };
};

var myViewModel = new viewmodel();
ko.applyBindings(myViewModel);

我仍然需要考虑删除和移动事件(gridster 中的移动应该更新视图模型中项目的 x 和 y 值)。我昨天开始使用淘汰赛,所以任何帮助将不胜感激。

我找不到最新版本的 gridster 的 CDN。JSFiddle 指向我在 Azure 中添加的一个临时网站,我将把它搁置几天,但请随时使用您自己的链接对其进行更新。

/ - - - - - - - - - - - - - - - 更新 - - - - - - - - - ----------------/

我更新了我的代码以支持删除和移动小部件(http://jsfiddle.net/Be4cf/11/),但有一个小警告:有一个未解决的问题(https://github.com/knockout/knockout/issues /1130 ) 在调用 beforeRemove 事件之前,淘汰赛会清除 jquery 数据。这会导致 gridster 崩溃,因为移动其他项目所需的数据保存在数据元素中。一种解决方法可能是保留数据的副本并稍后将其重新添加到元素中,但我选择了惰性方式并在淘汰赛中评论了违规行。

于 2013-11-19T19:49:05.680 回答
0

在gridster中将class =“gs_w”添加到你的li,它应该可以工作

于 2013-11-12T12:12:06.860 回答
0

您应该执行以下操作。addNewGridElement被调用 - 渲染的 DOM 元素在 Gridster 的情况下很重要,gridster.add_widget因为它接受一个 DOM 元素作为它的第一个参数 - 一旦你向 Knockout observable 添加了一些东西。在此之后,只需添加domNode到 Gridster。

视图.html:

   <div class="gridster">
        <ul data-bind="foreach: { myData, afterAdd: $root.addNewGridElement }">
            <li data-bind="attr:{

              'data-row':datarow,
              'data-col':datacol,
              'data-sizex':datasizex,
              'data-sizey':datasizey

        },text:text, doubleClick: $parent.AddOne"></li>
        </ul>
    </div>

视图.js:

self.addNewGridElement = function (domNode, index, newTile) {
    // Filter non li items - this will remove comments etc. dom  nodes.
    var liItem = $(domNode).filter('li');
    if ( liItem.length > 0 ) {
        // Add new Widget to Gridster
        self.gridster.add_widget(domNode, newTile.x, newTile.y, newTile.row, newTile.col);
    }
};
于 2014-07-09T15:48:22.247 回答