问题描述 使用 illuminate/database 之后 通过命令 php webman make:model AuthRole 生成的model 如图: 查询语句: $role = AuthRole::where(['status'=>1])->pluck('name','id'); 报错: PDOException: SQLSTATE[42S02]: Base table or view no...
问题描述 Try catch 用了 但是没有办法捕捉到 我用的\Throwable 程序代码或配置 <?php /** * This file is part of workerman. * * Licensed under The MIT License * For full copyright and license information, please see the MIT-LICENSE.t...
问题描述 使用 Eloquant 定义了一个 Model,根据文档和测试写入一行记录。数据行插入但是不符合预期。 这个是我的 Model 文件 <?php namespace app\model; use support\Model; class Staff extends Model { /** * The table associated with the model. ...
redis 配置改成 dotenv 获取配置的话,密码认证默认值传 null 会报错, 需要改成空字符串 return [ 'default' => [ 'host' => getenv('redis_host', '127.0.0.1'), 'password' => getenv('redis_password', ''), 'port' ...
问题描述 按照文档上一步步走下来的,但是好像数据库连接失败了 程序代码 查询代码 $name = Db::table('tb_park')->where('id', 1)->value('name'); return response("hello $name"); 数据库配置文件 // 默认数据库 'default' => 'mysql', 'mysql' => [...
Fatal error: Uncaught Error: Class "PhpOption\Option" not found in C:\Users \Desktop\zz\code\api\vendor\illuminate\support\Env.php:76 Stack trace: #0 C:\Users\Desktop\zz\code\api\vendor\illuminate\support\helpe...