JellyBool

17773 经验值

Http/Auth/AuthController 或者 LoginController,这个看你的 laravel 版本

这样么?

public function showUser(Request $request)
{
    $userType = $request->get('type');
    $result = DB::table('cmt_admin_users')
        ->where('type', $userType)
        ->get();
    return response()->json($result->toArray());
}

或者你在 ready 的 console 打印这个试试:

console.log(response.data)

额,你确定你写对文件的名字了么?

你 QQ 私聊我吧,加视频播放页面的官方 QQ 群找我。

出现 0 不能为空 的 0 是数组的 index 吧。你对应设置一下这个 index 对应的错误提示试试

嗯哼,我已经开了权限了。你看看

最简单的思路是记录 menu 的 parent_id 和 level ,前者表示上级菜单的 id ,level 是菜单等级。如果 parent_id 为空就是根菜单。

或者你看看这个 package :https://github.com/lavary/laravel-menu 和 这个资料 http://stackoverflow.com/questions/35248505/using-laravel-menu-how-do-i-get-sub-items-to-nest