3

我的 JS:

<script type="text/javascript">
        function DictionaryEntry() {
            var self = this;
            self.Simplified = ko.observable("");
            self.Traditional = ko.observable("");
            self.Phonetic = ko.observable("");
            self.Definition = ko.observable("");
        }

        function DictionaryModel() {
            var self = this;

            self.entries = ko.observableArray([]);
        }

        var viewModel = new DictionaryModel();
        viewModel.update = function () {
            var self = this;

            var f = $("#fSearch");
            $.ajax({
                url: f.attr('action'),
                type: f.attr('method'),
                data: f.serialize(),
                success: function (result) {
                    self.entries = ko.mapping.fromJS(result, viewModel);
                }
            });

            return false;
        }

        ko.applyBindings(viewModel);

    </script>

表格html:

<table class="table table-striped">
        <thead>
            <tr>
                <th>@T("Simplified")</th>
                <th>@T("Traditional")</th>
                <th>@T("Phonetic")</th>
                <th>@T("Definition")</th>
            </tr>
        </thead>
        <tbody data-bind="foreach: entries">
            <tr>
                <td data-bind="text: Simplified"></td>
                <td data-bind="text: Traditional"></td>
                <td data-bind="text: Phonetic"></td>
                <td data-bind="text: Definition"></td>
            </tr>    
        </tbody>
    </table>

触发更新的按钮.. 搜索字典并返回结果以替换表中当前的内容:

<input type="submit" value="Search" class="btn" data-bind="click: update" />

在我的操作方法中,这是返回的:

return Json(new
                {
                    // here list is a List<T> with the 4 properties to display in UI
                    entries = list,
                    IndexOfPage = indexOfPage,
                    SizeOfPage = sizeOfPage,
                    TotalRecords = totalRecords,
                    Pages = (int)Math.Ceiling((double)totalRecords / sizeOfPage)
                });

我遇到的问题是它似乎由于某种原因陷入了无限循环。我在动作中设置了一个断点,我可以看到它一遍又一遍地去那里......连续......

我究竟做错了什么?完全是淘汰赛的新手(在 JS 方面也不完全是超级,所以请不要给出模糊的答案)

4

2 回答 2

3
于 2012-04-28T03:37:22.960 回答
0

如果结果有一个条目属性是您的列表,您应该只需要'ko.mapping.fromJS(result,viewModel)'。将条目设置为结果会为您提供一个带有它自己的条目属性的条目属性。

于 2012-05-03T06:07:58.367 回答