我有一个每秒更新的数组,并且我正在遍历具有映射数组的高级部分,并且无法完成任务。我对updateTarget(updatedSource, target) {}函数中的内容感到困惑。注释和codepen到此为止,而dom中从未显示任何内容。该函数显然已被调用,但是我不知道如何使用新源更新目标。

最佳答案

updateTarget参数的签名和典型实现如下:

function updateResult(itemRecord, itemComponent, index) {
  itemComponent.setItemRecord(itemRecord);
}

我已经创建了createMapping here的完整演示。

关于javascript - Maquette在createMapping()参数的updateTarget函数中会发生什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34959276/

10-09 15:53