namespace admins\controller; use think\Controller; use think\Request; class Account extends Controller{ public function __construct() { parent::__construct(); } function login(){ return $this->fetch(); } }
아주 흔한 코드인데 컨트롤러를 찾을 수 없다는게 문제네요. 영상에서 확실히 가능할까요?
秋香姐家的小书童2018-06-25 11:19:44
Controller 첫 글자의 대문자 표기를 주의 깊게 살펴보시기 바랍니다. 첫 번째 네임스페이스의 대문자 표기가 균일하지 않습니다.