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.
您好我想创建一个自定义 JsonView 类,类似但我想格式化数据不同,任何建议:
在哪里创建类。如何使用实例化它。提前致谢。
对于 2.x,只需扩展当前类(如果可能):
App::uses('JsonView', 'View'); class MyJsonView extends JsonView {}
否则,您当然可以创建一个全新的。
无论哪种方式,将其放入您的 /APP/Lib 文件夹:
/Lib/View/MyJsonView.php
然后您可以轻松地将其用作
$this->View = 'MyJsonView';