我是Mithril的新手,但对它实施良好编码模式和关注点分离的方式感到非常满意。谈到这一点,我开始编码,大量使用m.component()。

稍后,我阅读了秘银文章“何时CSS会让您失望”(http://lhorie.github.io/mithril-blog/when-css-lets-you-down.html),该文章解释了如何编写Transformer-Functions来遍历和操纵虚拟DOM-Tree。编写多种横切关注点的绝妙概念。

但是,当我尝试将此模式与包含组件的VDOM一起使用时,它不起作用,因为m.component返回的是组件而不是VDOM-Object。检测组件没有帮助,因为此时尚未构建嵌入式视图。

现在我在问自己,如何处理此问题,或者如果我误解了根本上错的东西...

以下几行代码显示了问题:

...

someComponent.view = function() {
return m('html', [
    m('body', [
        m('div', [
            m.component(anotherComponent)
        ])
    ])
};

...

// and now the traversal function from the mithril side
var highlightNegatives = function (root, parent) {
    if (!root) return root;
    else if (root instanceof Array) {
        for (var i = 0; i < root.length; i++) {
            highlightNegatives(root[i], parent);
        }
    } else if (root.children) {
        highlightNegatives(root.children, root);
    } else if (typeof child == "string" && child.indexOf("($") === 0) {
        parent.attrs.class = "text-danger";
    }
    return root;
};

highlightNegatives(someComponent.view()); // will not find the relevant elements in "anotherComponent"


别人如何处理这个问题?

最佳答案

在撰写博客文章后添加了组件。

您需要先将组件转换为vDOM对象,然后才能将其包含在视图中。请注意,我已经完成了2次,一次是在highlightNegatives()函数内部,以便在遍历vDOM树时捕获组件,而在视图中调用它时也在函数参数中。

您可以仅包含组件标识符,而无需调用m.component(),除非您要向组件发送属性或其他选项:

myComponent
vs.
m.component( myComponent, {extraStuff: [1,2,3]}, otherStuff )


调用highlightNegatives()时,您需要考虑这一点。

模板中无需包含html和body。浏览器会为您执行此操作(当然,您也可以将它们包含在index.html中)

这是下面的代码的工作示例:
http://jsbin.com/poqemi/3/edit?js,output

var data = ['$10.00', '($20.00)', '$30.00', '($40.00)', '($50.00)']

var App = {
  view: function(ctrl, attrs) {
    return m("div.app", [
      m('h1', "My App"),
      someComponent
    ])
  }
}

var anotherComponent = {
  controller: function (){
    this.data = data
  },
  view: function (ctrl){
    return m('div.anotherComponent', [
      m('h3', 'anotherComponent'),
      ctrl.data.map( function(d) {
        return m('li', d)
      })
    ])
  }
}

var someComponent = {}
someComponent.controller = function (){ }
someComponent.view = function (ctrl) {
  return m('div.someComponent', [
      m('h2', 'someComponent'),
          highlightNegatives(anotherComponent.view( new anotherComponent.controller() ))
        ])
};

// and now the traversal function from the mithril side
var highlightNegatives = function (root, parent) {
    if (!root) return root;
    else if (root instanceof Array) {
      for (var i = 0; i < root.length; i++) {
        // when you encounter a component, convert to VDOM object
        if (root[i].view) {
          highlightNegatives(root[i].view( new root[i].controller() ))
        }else{
          highlightNegatives(root[i], parent);
        }
      }
    } else if (root.children) {
        highlightNegatives(root.children, root);
    } else if (typeof root == "string" && root.indexOf("($") === 0) {
          parent.attrs.class = "text-danger";
    }
    return root;
};

m.mount(document.body, App)

//Calling this function after the App is mounted does nothing.
//It returns a vDOM object that must be injected into the someComponent.view
//highlightNegatives(someComponent.view()); // will not find the relevant elements in "anotherComponent"

09-25 17:37