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.
我可以访问旧式piBase类和方法吗?
例如,我可以创建一个AccessMyoldExtensionService.php服务作为包装类,然后将返回值拉入我的控制器吗?
AccessMyoldExtensionService.php
就我而言,我需要返回一个无法直接迁移到 MVC 样式的旧数据记录列表。
如果是这样,基本方法是什么?
要访问旧扩展的数据库记录,您可以将表映射到新扩展中。创建具有所需表字段的匹配属性的新模型。在 TS setup.txt 中创建映射,例如
persistence{ [...] classes{ Tx_YourNewExtension_Domain_Model_Bar { mapping { tableName = tableNameOfOldExtension } } } }
创建相关存储库。