Json Data没有正确反映在tableView中

时间:2016-08-09 17:17:44

标签: ios json swift uitableview

将本地json文件加载到表视图和调试器日志中一切正常,但数据在tableView 中重复出现。我已经在这里拍摄了模拟器和日志的屏幕截图 - image description here可能我认为我在添加数据时遇到了问题。我有TableViewCell - viewCell和我的数据类 - attendance.swift和tableViewController当然。我试图显示两个数据字段。 tableViewController的代码 -

%%html
<script>
    // AUTORUN ALL CELLS ON NOTEBOOK-LOAD!
    require(
        ['base/js/namespace', 'jquery'], 
        function(jupyter, $) {
            $(jupyter.events).on("kernel_ready.Kernel", function () {
                console.log("Auto-running all cells-below...");
                jupyter.actions.call('jupyter-notebook:run-all-cells-below');
                jupyter.actions.call('jupyter-notebook:save-notebook');
            });
        }
    );
</script>

1 个答案:

答案 0 :(得分:1)

错误似乎是因为您只更新单个对象并将其添加到数组中。因此,最后只剩下一种具有相同值的数组中的对象

let checkin = attendance()

将其移至循环内

for ch in check {