搜索中心
全部 模块文档 模块 讨论 文档 问答
搜索 www.quickq-id.cfd , 共找到 262 条记录 ,仅显示前 20 页
搜索结果
[文档] 数据展示 - 字段组件库
areaChina 中国地区 $form->areaChina('field', '字段名'); audio 音频 $form->audio('field', '字段名'); // 使用用户音频库 $form->audio('field', '字段名') ->server(modstart_web_url('member_data/file_manager/audio')); captcha 验证码 $form->captcha('field', '字段名'); checkbox 多选 $form->checkbox('field', '名称'); code 代码 $form->code('field', '名称'); color 颜色 $form-&g...
更新时间:2024-10-03 21:51:30
[讨论] crud 中如何加where条件 我要显示的数据是一部分
$builder         ->init('news')             ->field(function ($builder) { } 我要如何才能显示我想要的部分数据 比如 where id>100
更新时间:2023-09-12 10:46:38
[文档] 开发必看 - 任务调度
使用 Laravel 的任务调度,可以实现系统计划执行任务。 在模块中注册任务调度 实现一个任务调度Provider cronEveryMinute(); } public function title() { return '测试任务调度'; } public function run() { Log::info('任务已经执行'); } } 注册任务调度 ScheduleBiz::register(ModuleXxxScheduleBiz::class); 开启调度器 Cron 是 UNIX、SOLARIS、LINUX 下的一个十分有用的...
更新时间:2025-07-28 22:31:59
[讨论] CMS里购买了视频课模块
问题描述: CMS里购买了视频课模块   图文模块    和你们的专门的https://www.tecmz.com/product/mzedu 知识付费  有什么区别?在功能上? 环境信息: PHP版本、系统版本、模块版本等 复现步骤:   建议与意见:  
更新时间:2023-05-25 09:40:15
[文档] 安装使用常见问题 - Q:收不到邮件是什么原因?
系统邮件发送采用了队列的方式(队列名为 default),如果你开启了队列而没有监听默认队列,则可能会出现收不到邮件的方式。 Laravel5 /xxx/bin/php /www/example.com/artisan queue:work database --queue=default --sleep=3 --tries=1 --timeout=86400 /xxx/bin/php 替换成 PHP 的运行路径,通常为 /usr/bin/php default 为队列名称,默认为 default,还有其他队列如文档转换 FileConvert Laravel9 /xxx/bin/php /www/exa...
更新时间:2026-03-09 14:49:08
[文档] ModStart安装说明 - 配置参考
Nginx参考配置 server { listen 80; server_name yourdomain.com; charset utf-8; index index.php index.html; root /path/to/yourdomain.com/public; autoindex off; location ^~ /.git { deny all; } location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_inde...
更新时间:2024-10-13 19:52:00
[文档] Blog主题教程 - 博客链接
/blogs:博客列表 /blogs?keywords=xxx:博客关键词搜索 /blogs?keywords=xxx:博客标签搜索 /blog/{id}:博客详情 /blog/message:留言 /blog/archive:博客归档 /blog/about:关于
更新时间:2023-12-04 10:31:17
[文档] CMS主题教程 - CMS链接
/tag/{name} 标签列表 /a/{id} 内容页面 /search?keywords={keywords} 搜索列表 除了以上默认的地址方式外,所有页面都需要在后台栏目中自定义。
更新时间:2026-06-16 19:20:01
[讨论] laravel 如何实现接口既可以匿名访问也可以登录状态访问?
laravel的一个问题,我简化了一下是这样。我想让访问接口 /a,未登录状态访问返回 0, 登录状态下返回 1,如何实现? 正常是这样。topic 状态为 1 时可以任何人访问,状态未 2 时,只有作者可以访问 // route.phpRoute::get('/topics/{topic}', [\App\Http\Controllers\Api\TopicController::class, 'show']) // controller$this->authorize('view', $topic); // TopicPolic...
更新时间:2024-03-08 22:58:09
[文档] 模块入门开发教程 - 模块数据调用方式
以调用 Demo 模块中的表 demo_user 数据表为例。 假设 demo_user 数据表有如下数据: id status name age 1 1 张三 20 2 1 李四 21 3 0 王五 22 4 1 赵六 23 首先,创建文件 module/Demo/Util/DemoUserUtil.php,内容如下 1]) ->orderBy('id', 'desc') ->limit($limit) ->get()->toArray(); return $records; } } 下面就可以在 .blade.php 模板文...
更新时间:2024-09-27 17:43:49
QQ
微信
客服