麻烦让m.request自动投射到秘银的一个班级

时间:2015-03-10 18:43:39

标签: mithril.js

我已定义了一个类,并要求m.request向其投射Web服务的JSON响应,但每个类属性都等于n/b(),我的视图呈现每个属性为function (){return arguments.length&&(a=arguments[0]),a}

如果我没有尝试在m.request中自动将JSON响应强制转换为我的类,那么我的视图渲染就好了,我认为Web服务返回的JSON对象是有效的JSON。

我想用我的班级。有什么问题?

以下是Web服务返回的JSON的编辑样本:

{
  "responseHeader":{
    "status":0,
    "QTime":0,
    "params":{
      "q":"blah blah",
      "indent":"true",
      "wt":"json"}
  },
  "response":{
    "numFound":97,
    "start":0,
    "docs":[
      {
        "identifier":"abc123",
        "heading":"A Great Heading",
        "id":"abc-123-1",
        "title":"A Title",
        "url":"path/to/some.html",
        "content":["Blah blah blah blah blee blah."]
      },
      {
        "identifier":"xyz789",
        "heading":"Another Heading",
        "id":"xyz-789-1",
        "title":"Another Title",
        "url":"another/path/to.html",
        "content":["My bonny lies over the ocean."]
      }
    ]
  }
}

这是我的秘银应用程序:

var findus = {};

findus.Document = function (data) {
    this.id = m.prop(data.id);
    this.title = m.prop(data.title);
    this.heading = m.prop(data.heading);
    this.identifier = m.prop(data.identifer);
    this.url = m.prop("//" + data.url + "#" + data.identifier);
};

findus.vm = (function() {
    var vm = {};
    vm.init = function () {

        // user input
        vm.queryText = m.prop("");

        vm.search = function () {
            if (vm.queryText()) {
                vm.results = m.request({
                    method: "GET", 
                    url: "/prd/query?q=" + vm.queryText(), 
                    type: findus.Document,
                    unwrapSuccess: function (response) {
                        return response.response.docs;
                    },
                    unwrapError: function (response) {
                        console.log(response);
                    }
                }).bind(vm);
            }
        };


    };
    return vm;
}());

findus.controller = function () {
    findus.vm.init();
};

findus.view = function () {

    return [
        m("input", {onchange: m.withAttr("value", findus.vm.queryText), value: findus.vm.queryText()}),
        m("button", {onclick: findus.vm.search}, "Search"),
        findus.vm.results ? m("div", [
            findus.vm.results().map(function (result) {
                return m("div", [
                    m("h2", result.heading),
                    m("p", result.content),
                    m("a", {href: result.url}, result.url)
                ]);
            })
        ]) : ""
    ];

};

m.module(document.body, {controller: findus.controller, view: findus.view});

1 个答案:

答案 0 :(得分:1)

哦,开玩笑。我忘记了我的类属性是m.prop的getter / setter,所以我应该在视图中将它们称为函数 - 见下文。

误报,问题解决了,我很尴尬。

findus.view = function () {

    return [
        m("input", {onchange: m.withAttr("value", findus.vm.queryText), value: findus.vm.queryText()}),
        m("button", {onclick: findus.vm.search}, "Search"),
        findus.vm.results ? m("div", [
            findus.vm.results().map(function (result) {
                return m("div", [
                    m("h2", result.heading()),
                    m("p", m.trust(result.content())),
                    m("a", {href: result.url()}, result.url())
                ]);
            })
        ]) : ""
    ];

};