上一页 1 2 3 4 5 6 7 8 9 ··· 60 下一页
摘要: v-cloak指令 用于隐藏 未编译的模版闪取 用户可以看到dom元素的大括号 v-pre指令 不编译dom v-once 指令 只编译一次,后面不编译 阅读全文
posted @ 2024-02-11 13:51 学无边涯 阅读(12) 评论(0) 推荐(0)
摘要: 插值表达式 <div>{{msg}}www.96net.com.cn</div> 结果不会替换标签里面的内容 vue指令v-text <div v-text="msg">www.96net.com.cn</div> 结果会替换标签里面的内容 阅读全文
posted @ 2024-02-11 13:03 学无边涯 阅读(27) 评论(0) 推荐(0)
摘要: 1,内容指令 v-text v-html 2,属性和样式指令 v-bind 3,事件监听指令 v-on 4,条件渲染指令 v-if v-else v-if-else v-show 5,循环列表渲染指令 v-for 6,双向数据绑定指令 v-model 文章来自 www.96net.com.cn 阅读全文
posted @ 2024-02-11 12:55 学无边涯 阅读(31) 评论(0) 推荐(0)
摘要: 临时:在 MySQL 中直接用命令行执行; set global query_cache_size=0 set global query_cache_type=0 永久:将以下两个参数添加至配置文件 my.cnf,并重启 MySQL; query_cache_type=0 query_cache_s 阅读全文
posted @ 2024-01-19 22:49 学无边涯 阅读(316) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1 阅读全文
posted @ 2024-01-01 15:21 学无边涯 阅读(474) 评论(0) 推荐(0)
摘要: 默认情况下, .env 文件包含以下参数 APP_ENV = local APP_DEBUG = true APP_KEY = base64:ZPt2wmKE/X4eEhrzJU6XX4R93rCwYG8E2f8QUA7kGK8 = APP_URL = http://www.xhcj168.com 阅读全文
posted @ 2023-12-29 21:58 学无边涯 阅读(355) 评论(0) 推荐(0)
摘要: 一,主表book class Book extends Model{ // protected $fillable=['title','price','num']; public function bookCard(){ return $this->hasOne(BookCard::class); 阅读全文
posted @ 2023-11-05 22:05 学无边涯 阅读(40) 评论(0) 推荐(0)
摘要: 1,创建模型 php artisan make:model Book -m创建模型book 并生成迁移文件 2,Book迁移文件 public function up(){ Schema::create('books', function (Blueprint $table) { $table->i 阅读全文
posted @ 2023-11-05 20:47 学无边涯 阅读(50) 评论(0) 推荐(0)
摘要: 1,创建中间件 php artisan make:middleware Activery 2,中间写过滤 public function handle($request, Closure $next){ if($request->age<20){ return redirect('home'); } 阅读全文
posted @ 2023-11-03 23:40 学无边涯 阅读(74) 评论(0) 推荐(0)
摘要: vue中v-bind绑定元素属性 <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>vue.js</title> </he 阅读全文
posted @ 2023-10-12 21:49 学无边涯 阅读(37) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 60 下一页