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.
我不知道我是否跳过了文档中的某些内容,但我在数据库配置和模型中都看不到“tableprefix”语句,当我搜索 tableprefix 时,我只在 2.x 文档中看到它。
是否仍然可以使用 tableprefix 以及如何使用?
问候
根据 3.0,这是不可能的。在我看来,3.1 似乎并没有解决这个问题。因此,与此同时,我认为最简单的解决方案是执行以下操作:
class Post extends AppModel { public $useTable = 'wp_posts'; }