我在 CakePhp 中创建附加视图时遇到了一些麻烦据我了解,您需要匹配视图文件名和控制器功能。该函数在正确的控制器中,但 CakePHP 仍然给我这个错误:
Error: The action userMutualFriends is not defined in controller UserProfileController
Error: Create UserProfileController::userMutualFriends() in file: app\Controller\UserProfileController.php.
<?php
class UserProfileController extends AppController {
public function userMutualFriends() {
}
}
虽然我将完全相同的功能粘贴到控制器中。我对 CakePhp 没有经验,所以也许我只是错过了一些东西..
谢谢,山姆