0

第一个问题!希望我能做好。

我有这个绑定列表:

<table id="restaurants_list" data-bind="foreach : restaurants" style="display: none">
    <tr>
        <td data-bind="text:name"></td>
        <td data-bind="text:address.address1"></td>
        <td data-bind="text:address.address2"></td>
        <td data-bind="text:address.postcode + ' ' + address.suburb"></td>
        <td>
            <input type="button" value="show" data-bind="click: $root.showmap" />
        </td>
    </tr>
</table>
<div id="map"></div>

这里是模型视图:

function RestaurantsViewModel() {
    var self = this;
    self.restaurants = data;
    self.showMap = function (restaurant) {
        $("#map").show();
        ....
    };
    showMap(restaurants[0]);
};

最后绑定:

$(document).ready(function () {
    $("#link_get_restaurants").bind("click", get_restaurants);
});
function get_restaurants(event) {
    $("#restaurants_list").show();
    ko.applyBindings(new RestaurantsViewModel());
}

第一个showmap(restaurants[0])工作正常。但是,click : $root.showmap不火。

那我是不是做错了什么?我也使用 Jquery,我不知道它是否来自那里。

谢谢。

4

2 回答 2

5

试试这两个步骤:

1) 更换

click : $root.showmap

click : $root.showMap

2)诅咒区分大小写:)

于 2013-03-09T08:02:20.017 回答
2

showmap在绑定中拼写错误(您的方法是showMap)。你可以尝试绑定到$root.showMap吗?

<input type="button" value="show" data-bind="click: $root.showMap" />
于 2013-03-09T07:59:13.277 回答