Delphi:通过RTTI获取/设置属性时不应用方法解析子句

时间:2018-06-01 20:01:56

标签: delphi rtti

我正在尝试通过对各种接口属性使用方法解析子句来为现有代码添加功能。

虽然这很好,但在代码中获取/设置属性时,尝试通过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

0 个答案:

没有答案