我正在尝试通过对各种接口属性使用方法解析子句来为现有代码添加功能。
虽然这很好,但在代码中获取/设置属性时,尝试通过RTTI设置或获取属性时会失败。
使用RTTI时,将调用第一个实现类方法。
以下是显示问题的代码:
html += "</tr></thead><tbody>"
jQuery.each(response.data, function(index, value) {
html += "<tr>"; //new code
jQuery.each(response.columns, function(idx, col) {
html+="<td>" + value[col] + "</td>"
})
html += "</tr>"; //new code
})
html += "</tbody></table>"
我做错了什么?
谢谢,
IB。 Delphi 10.2 Tokyo Win64