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.
我正在尝试使用 yii 执行存储在同一控制器中的不同操作。
我有一个名为“test”的操作,我可以通过输入 url“localhost/blah/test”来访问它,这个 url 在我的控制器中调用方法“actiontest()”,现在我想要的是通过输入“localhost/blah” /test/create”访问同一控制器中的方法“actioncreate()”。
有没有办法做到这一点?
在配置中定义此规则:
'rules' => array( 'localhost/blah/test/create' => 'localhost/blah/create', .... ),