10 2023 档案

摘要:一,报错信息 post到不存在的路由时,会触发MethodNotAllowedHttpException,提示信息: The POST method is not supported for route login/login. Supported methods: GET, HEAD." The 阅读全文
posted @ 2023-10-31 08:25 刘宏缔的架构森林 阅读(583) 评论(0) 推荐(0) 编辑
摘要:一,php代码: 1,app\providers\AppServiceProvider.php 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 <?php namesp 阅读全文
posted @ 2023-10-31 08:20 刘宏缔的架构森林 阅读(24) 评论(0) 推荐(0) 编辑
摘要:一,第三方库: 官方代码库: https://github.com/Gregwar/Captcha 二,安装第三方库 1,用composer安装 liuhongdi@lhdpc:/data/laravel/dignews$ composer require gregwar/captcha 2,安装完 阅读全文
posted @ 2023-10-31 08:16 刘宏缔的架构森林 阅读(525) 评论(0) 推荐(0) 编辑
摘要:一,相关文档 https://learnku.com/docs/laravel/10.x/filesystem/14865#481e03 二,前端vue代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 阅读全文
posted @ 2023-10-30 09:00 刘宏缔的架构森林 阅读(45) 评论(0) 推荐(0) 编辑
摘要:一,相关文档 https://learnku.com/docs/laravel/10.x/filesystem/14865#481e03 二,前端vue代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 阅读全文
posted @ 2023-10-30 08:40 刘宏缔的架构森林 阅读(12) 评论(0) 推荐(0) 编辑
摘要:一,相关文档 https://learnku.com/docs/laravel/10.x/testing/14895 二,php代码 1,查看laravel自带的phpunit的版本 liuhongdi@lhdpc:/data/laravel/dignews$ ./vendor/bin/phpuni 阅读全文
posted @ 2023-10-30 08:35 刘宏缔的架构森林 阅读(40) 评论(0) 推荐(0) 编辑
摘要:一,phpexcel官方代码站: https://github.com/PHPOffice/PHPExcel 说明:项目在2019年已经被设置为archived新用户可以使用它的代替项目PhpSpreadsheet来实现我是因为旧代码中使用了这个库才应用它来工作 二,演示代码: 1 2 3 4 5 阅读全文
posted @ 2023-10-30 07:51 刘宏缔的架构森林 阅读(192) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/configuration/14836#972c4c 二,用artisan工具实现上线下线 1,下线,进入维护模式 [root@img dignews]# /usr/local/soft/php8.2.5/b 阅读全文
posted @ 2023-10-29 10:34 刘宏缔的架构森林 阅读(93) 评论(0) 推荐(0) 编辑
摘要:一,APP_KEY的作用: 1,用途: 它作为网站的密钥使用,用来保护网站的安全主要用于加密cookie 2,生成APP_KEY: 生成前: APP_KEY= 生成命令: [root@img dignews]# /usr/local/soft/php8.2.5/bin/php artisan key 阅读全文
posted @ 2023-10-29 10:31 刘宏缔的架构森林 阅读(350) 评论(0) 推荐(0) 编辑
摘要:一,相关文档 https://learnku.com/docs/laravel/10.x/blade/14852#918cb6 二,模板: resources/views/layouts/layout.blade.php 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 阅读全文
posted @ 2023-10-29 10:29 刘宏缔的架构森林 阅读(19) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/eloquent-relationships/14889 二,php代码: 1,model中定义方法 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 阅读全文
posted @ 2023-10-25 07:50 刘宏缔的架构森林 阅读(189) 评论(0) 推荐(0) 编辑
摘要:一,php代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 public function home(Request $request){ //默认连接 DB::enableQueryLog(); $modelNews = 阅读全文
posted @ 2023-10-24 08:41 刘宏缔的架构森林 阅读(227) 评论(0) 推荐(0) 编辑
摘要:一,相关文档 https://learnku.com/docs/laravel/10.x/database/14882#2cd405 二,php代码 1,编辑.env DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=gon 阅读全文
posted @ 2023-10-24 08:31 刘宏缔的架构森林 阅读(36) 评论(0) 推荐(0) 编辑
摘要:一,相关文档 https://learnku.com/docs/laravel/10.x/middleware/14846 二,php代码 1,middleware 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 < 阅读全文
posted @ 2023-10-23 14:19 刘宏缔的架构森林 阅读(99) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/http-tests/14896 二,php代码: 1,创建test程序 liuhongdi@lhdpc:/data/laravel/dignews$ php artisan make:test NewsTe 阅读全文
posted @ 2023-10-23 12:35 刘宏缔的架构森林 阅读(46) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/blade/14852 二,创建controller和view 1,创建controller liuhongdi@lhdpc:/data/laravel/dignews$ php artisan make:c 阅读全文
posted @ 2023-10-23 08:32 刘宏缔的架构森林 阅读(27) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/routing/14845 二,查看所有注册的路由 1,查看路由: liuhongdi@lhdpc:/data/laravel/dignews$ php artisan route:list GET|HEAD 阅读全文
posted @ 2023-10-23 08:28 刘宏缔的架构森林 阅读(45) 评论(0) 推荐(0) 编辑
摘要:一,相关文档 https://learnku.com/docs/laravel/10.x/artisan/14859 二,php代码 1,创建command liuhongdi@lhdpc:/data/laravel/dignews$ php artisan make:command Cart IN 阅读全文
posted @ 2023-10-23 08:25 刘宏缔的架构森林 阅读(119) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/providers/14843 二,php代码: 1,业务代码: App\extend\mall\GoodsInterface.php 1 2 3 4 5 6 7 <?php namespace App\ex 阅读全文
posted @ 2023-10-22 10:42 刘宏缔的架构森林 阅读(14) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/container/14842 二,php代码: 假设我们有两种商品:虚拟商品如账号,实体商品如手办需要销售 1,App\extend\mall\GoodsInterface.php 1 2 3 4 5 6 阅读全文
posted @ 2023-10-22 10:40 刘宏缔的架构森林 阅读(12) 评论(0) 推荐(0) 编辑
摘要:一,启动与退出: liuhongdi@lhdpc:/data/laravel/dignews$ php artisan tinker Psy Shell v0.11.22 (PHP 8.1.1 — cli) by Justin Hileman > exit INFO Goodbye. 二,查询数据 阅读全文
posted @ 2023-10-22 10:38 刘宏缔的架构森林 阅读(46) 评论(0) 推荐(0) 编辑
摘要:一,相关的文档: https://learnku.com/docs/laravel/10.x/scheduling/14875 二,php代码: 1,创建command: liuhongdi@lhdpc:/data/laravel/dignews$ php artisan make:command 阅读全文
posted @ 2023-10-22 10:36 刘宏缔的架构森林 阅读(78) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/errors/14857#9e8f93 二,php代码: 1,代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 阅读全文
posted @ 2023-10-22 10:32 刘宏缔的架构森林 阅读(108) 评论(0) 推荐(0) 编辑
摘要:一,参考文档: https://learnku.com/docs/laravel/10.x/database/14882#09ddab 二,php代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 阅读全文
posted @ 2023-10-21 08:57 刘宏缔的架构森林 阅读(61) 评论(0) 推荐(0) 编辑
摘要:一,文档地址: https://learnku.com/docs/laravel/10.x/configuration/14836#701998 二,设置 1,.env中关于调试的默认值: APP_DEBUG=true 2,关闭调试 APP_DEBUG=false 说明:刘宏缔的架构森林—专注it技 阅读全文
posted @ 2023-10-21 08:55 刘宏缔的架构森林 阅读(363) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/deployment/14840 二, 配置nginx 1,站点文件 server { listen 80; #listen [::]:80; server_name dig.lhdtest.com; roo 阅读全文
posted @ 2023-10-21 08:53 刘宏缔的架构森林 阅读(611) 评论(0) 推荐(0) 编辑
摘要:一,php代码 修改routes/web.php 原代码: Route::get('/', function () { return view('welcome'); }); 修改后 Route::get('/', function () { $appName = env('APP_NAME'); 阅读全文
posted @ 2023-10-21 08:50 刘宏缔的架构森林 阅读(51) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/redis/14887 二,php代码 1,配置.env 使用默认的设置: REDIS_HOST=127.0.0.1 REDIS_PASSWORD=null REDIS_PORT=6379 2,control 阅读全文
posted @ 2023-10-21 08:48 刘宏缔的架构森林 阅读(28) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/queries/14883 二,php代码: 1,配置.env DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=gonews DB 阅读全文
posted @ 2023-10-20 08:01 刘宏缔的架构森林 阅读(28) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/validation/14856 二,php代码 1,生成类 liuhongdi@lhdpc:/data/laravel/dignews$ php artisan make:request HomeReque 阅读全文
posted @ 2023-10-20 07:58 刘宏缔的架构森林 阅读(82) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/logging/14858 二,未配置日志: php代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <?php namespace App\Http\Controller 阅读全文
posted @ 2023-10-20 07:55 刘宏缔的架构森林 阅读(132) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/middleware/14846 二,创建middleware liuhongdi@lhdpc:/data/laravel/dignews$ php artisan make:middleware Check 阅读全文
posted @ 2023-10-20 07:53 刘宏缔的架构森林 阅读(120) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/middleware/14846 二,创建middleware liuhongdi@lhdpc:/data/laravel/dignews$ php artisan make:middleware Check 阅读全文
posted @ 2023-10-20 07:49 刘宏缔的架构森林 阅读(112) 评论(0) 推荐(0) 编辑
摘要:一,创建exception: liuhongdi@lhdpc:/data/laravel/dignews$ php artisan make:exception ApiException INFO Exception [app/Exceptions/ApiException.php] created 阅读全文
posted @ 2023-10-19 09:07 刘宏缔的架构森林 阅读(103) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/errors/14857#87364d 二,php代码: 1,app\exceptions\Handler.php 增加以下一段: 1 2 3 4 5 6 7 8 9 10 11 //重写render pub 阅读全文
posted @ 2023-10-19 08:55 刘宏缔的架构森林 阅读(103) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/routing/14845#ad9737 二,php代码 在routes/web.php中添加以下代码: 1 2 3 4 5 6 7 8 //配置回退路由,起兜底作用 Route::fallback(func 阅读全文
posted @ 2023-10-19 08:53 刘宏缔的架构森林 阅读(35) 评论(0) 推荐(0) 编辑
摘要:一,参考文档 https://learnku.com/docs/laravel/10.x/responses/14850 二,php代码 1,App\extend\result\Result.php 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 阅读全文
posted @ 2023-10-19 08:47 刘宏缔的架构森林 阅读(282) 评论(0) 推荐(0) 编辑
摘要:一,相关文档: https://learnku.com/docs/laravel/10.x/requests/14849#e16c06 二,php代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 阅读全文
posted @ 2023-10-19 07:52 刘宏缔的架构森林 阅读(131) 评论(0) 推荐(0) 编辑
摘要:一,添加配置数据 1,在.env中添加: FILE_HOST="https://file.lhd.com" FILE_BASE_DIR="/web/site/file/html/image" 2,在config目录下新建文件: image.php,内容: <?php return [ 'defaul 阅读全文
posted @ 2023-10-18 08:23 刘宏缔的架构森林 阅读(90) 评论(0) 推荐(0) 编辑
摘要:一,从命令行创建controller liuhongdi@lhdpc:/data/laravel/dignews$ php artisan make:controller NewsController INFO Controller [app/Http/Controllers/NewsControl 阅读全文
posted @ 2023-10-18 08:21 刘宏缔的架构森林 阅读(53) 评论(0) 推荐(0) 编辑
摘要:一,查看serve的帮助文档: liuhongdi@lhdpc:/data/laravel/dignews$ php artisan help serve Description: Serve the application on the PHP development server Usage: 阅读全文
posted @ 2023-10-18 08:18 刘宏缔的架构森林 阅读(424) 评论(0) 推荐(0) 编辑
摘要:一,列出所有命令 liuhongdi@lhdpc:/data/laravel/dignews$ php artisan list 二,显示命令的帮助信息: liuhongdi@lhdpc:/data/laravel/dignews$ php artisan help serve Descriptio 阅读全文
posted @ 2023-10-18 08:16 刘宏缔的架构森林 阅读(14) 评论(0) 推荐(0) 编辑
摘要:一,官方网站: https://laravel.com/ 中文文档可参见: https://learnku.com/docs/laravel/10.x 二,用composer创建项目: 1,创建项目 liuhongdi@lhdpc:/data/laravel$ composer create-pro 阅读全文
posted @ 2023-10-18 08:15 刘宏缔的架构森林 阅读(89) 评论(0) 推荐(0) 编辑
摘要:一,安装pinia liuhongdi@lhdpc:/data/vue/responsive$ npm -S install pinia 安装完成后查看已安装的版本: liuhongdi@lhdpc:/data/vue/responsive$ npm list pinia responsive@0. 阅读全文
posted @ 2023-10-04 22:42 刘宏缔的架构森林 阅读(416) 评论(0) 推荐(0) 编辑
摘要:一,报错信息: worker[webman:225916] exit with status 139 进程会退出 二,解决: 禁用opcache模块:在php.ini中注释掉opcache,使它不生效,如下: [opcache] ;opcache.enable=1 ;opcache.enable_c 阅读全文
posted @ 2023-10-04 22:40 刘宏缔的架构森林 阅读(120) 评论(0) 推荐(0) 编辑
摘要:一,官方文档地址: https://router.vuejs.org/zh/guide/essentials/dynamic-matching.html 二, 代码: 1,router配置 { path: '/:pathMatch(.*)*', name: 'NotFound',meta:{titl 阅读全文
posted @ 2023-10-04 22:38 刘宏缔的架构森林 阅读(516) 评论(0) 推荐(0) 编辑