1

我可能遗漏了一些非常简单的东西,但谁能指出我在这里做错了什么?

提前谢谢了。

<div data-bind="foreach: agencies">
    <div data-bind="text:name"></div>
    <div data-bind="text:email"></div>
    <button data-bind="click: removeAgency">remove</button>
</div>

<script type="text/javascript">

    var agency = [{
        name : ko.observable('a'),
        email : ko.observable('b')
    }, {
        name: ko.observable('c'),
        email: ko.observable('d')
    }];

    var vm = {
        agencies: ko.observableArray(agency),
        removeAgency: function(agency) {
            this.agencies.remove(agency);
        }
    };

    ko.applyBindings(vm);
</script>

这是我得到的错误:未捕获的错误:无法解析绑定。消息:ReferenceError:removeAgency 未定义;绑定值:点击:removeAgency

4

2 回答 2

4

您正在绑定到该 html 中的代理,但您的方法在您的视图模型上。尝试类似:

<button data-bind="click: $parent.removeAgency">remove</button>

您可能需要重新调整您的虚拟机以使范围正确:

var ViewModel = function(){
    var self = this;
    self.agencies = ko.observableArray(agency),
    self.removeAgency = function(agency) {
        self.agencies.remove(agency);
    }
};

var vm = new ViewModel();

我有时仍然对范围感到困惑,我不得不承认,但试一试,看看会发生什么。

于 2013-03-01T10:47:02.970 回答
0

工作示例:

http://jsfiddle.net/marko4286/7RDc3/2034/

阅读文档http://knockoutjs.com/documentation/foreach-binding.html

于 2013-03-01T11:18:25.603 回答