Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
¿ navision 中是否有 var_dump 等效于 php?
像 var_dump(RecRef); 或 var_dump(array); 在 Navision 开发中
提前致谢
没有像 var_dump 这样的通用转储函数(假设是 PHP)。您可以使用调试器在代码中的特定点查看特定记录上的所有字段和值。
您可以设计一个接受 Record 的通用转储函数,然后将其转换为 RecRef。RecRef 可以让您在技术上动态地遍历字段并将它们转储出来,尽管我从来没有亲自提出过需要。
如果您提供基础用例/问题,我们也许可以提供解决方案。