0

クラスを定義し、それにm.requestWeb サービスの 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."]
      }
    ]
  }
}

これが私のMithrilアプリです:

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});
4

1 に答える 1