0

在尝试构建 gridstack dash 时遇到问题

尝试加载页面时出现“未捕获的类型错误:无法读取未定义的属性 'addWidget'”。(代码基于基本的 gridstack 序列化演示https://github.com/gridstack/gridstack.js/blob/开发/演示/序列化.html )

我更改的脚本部分是

    <script type="text/javascript">
    $(function() {
        var options = {};
        $('.grid-stack').gridstack(options);
        new function() {

            this.grid = $('.grid-stack').data('gridstack');

            this.loadGrid = function() {
                this.grid.removeAll();
                debugger;
                const URL = `//${window.location.hostname}/dashboard/getDashboard`;
                $.getJSON(URL, function(items) {
                    _.each(items, function(node) {
                        this.grid.addWidget($('<div><div class="grid-stack-item-content" /></div>'),
                            node.x, node.y, node.width, node.height, true, 4, 12, 1, 8, node.id);
                    }.bind(this));
                });
                return false;
            }.bind(this);

            this.saveGrid = function() {
                this.serializedData = _.map($('.grid-stack > .grid-stack-item:visible'), function(el) {
                    el = $(el);
                    var node = el.data('_gridstack_node');
                    return {
                        x: node.x,
                        y: node.y,
                        width: node.width,
                        height: node.height
                    };
                });
                $('#saved-data').val(JSON.stringify(this.serializedData, null, '    '));
                return false;
            }.bind(this);

            this.clearGrid = function() {
                this.grid.removeAll();
                return false;
            }.bind(this);
            $('#save-grid').click(this.saveGrid);
            $('#load-grid').click(this.loadGrid);
            $('#clear-grid').click(this.clearGrid);
            this.loadGrid();
        };
    });
</script>

有什么建议么?我尝试了很多事情,但总是陷入死胡同

我能解决的最好办法是 this.grid 在我输入 getJSON 时消失

数据加载很好顺便说一句,我看到items填充了我期望的数据。

4

1 回答 1

0

似乎loadGrid方法中 this 的上下文可能不正确,请尝试将其更改为:

this.loadGrid = function () {
  this.grid.removeAll();
  debugger;
  const URL = `//${window.location.hostname}/dashboard/getDashboard`;
  const context = this;
  $.getJSON(URL, function (items) {
    _.each(items, function (node) {
      context.grid.addWidget($('<div><div class="grid-stack-item-content" /></div>'),
        node.x, node.y, node.width, node.height, true, 4, 12, 1, 8, node.id);
    }.bind(this));
  });
  return false;
}.bind(this);

如果您不使用正确的上下文,则会或可能this会引用这些嵌套函数中的其他内容。$_

于 2019-01-22T00:48:52.813 回答