未捕获的TypeError:无法调用undefined的方法'remove'

时间:2013-01-09 22:05:18

标签: asp.net-mvc-3 knockout.js knockout-mapping-plugin knockout-2.0

我正在尝试将knockout.js与MVC3一起使用,我一直在收到错误:

  

未捕获的TypeError:无法调用未定义的方法'remove'

设置是我有一个我需要添加和删除的UL列表:

<ul data-bind="foreach: Interviewees">
   <li>
       <div>
           <a data-bind="click: $root.removeInterviewee" class="xOut"></a>
        </div>
       <div>
          <h2>
              <span data-bind="text: FirstName"></span>
               <span data-bind="text: LastName"></span>
          </h2>
      </div>
   </li>
</ul>

以下是包含淘汰内容的javascript部分:

function SomeThingee(Id, SomeThingeeId, firstName, lastName, title, email) {
        this.Id = Id;
        this.SomeThingeeId = SomeThingeeId;
        this.FirstName = firstName;
        this.LastName = lastName;
        this.Title = title;
        this.Email = email;
    }

    var viewModel = ko.validatedObservable({
        addSomeThingee: function () {
            if (!viewModel.isValid()) {
                viewModel.errors.showAllMessages();
                return false;
            } else {
                var newSomeThingee = new SomeThingee(this.Id(), 0, this.FirstName(), this.LastName(), this.Title(), this.Email());

                $.ajax({
                    url: '@Url.Action("AddSomeThingee")',
                    type: "POST",
                    data: ko.toJSON(newSomeThingee),
                    dataType: "json",
                    contentType: "application/json; charset=utf-8",
                    success: function (result) {
                        newSomeThingee.SomeThingeeId = result.message; 
                    },
                    error: function (result) {

                    }
                });

                    this.SomeThingees.push(newSomeThingee);
                }
        },
        removeSomeThingee: function (item) {
            this.SomeThingees.remove(item);
        }
    });

    $(function () {
        var jsonModel = '@Html.Raw(JsonConvert.SerializeObject(this.Model))';
        var mvcModel = ko.mapping.fromJSON(jsonModel);

        var myViewModel = new viewModel();
        var g = ko.mapping.fromJS(myViewModel, mvcModel);

        ko.applyBindings(g, document.getElementById("someDiv"));

    });

此行发生错误:

this.SomeThingees.remove(item);

注意SomeThingees集合是从Model本身提供的。 add方法完全正常,但remove方法不起作用,并给我上面列出的错误。我做错了什么?

2 个答案:

答案 0 :(得分:5)

问题是当click绑定调用$root.removeInterviewee时,this设置为数据项($data)而不是视图模型({{ 1}})。有几种方法可以解决这个问题。可能最简单的方法是在绑定中的函数引用上使用$root

bind

另请参阅此Github issue以进一步讨论。

答案 1 :(得分:0)

我遇到了同样的问题,问题在于绑定调用设置为数据项($ data)而不是视图模型($ root)。我改变了<button data-bind="click: $root.(your delete function).bind($root)"></button>并为我工作!谢谢Michael Best