2021年2月25日

laravel 中url使用

摘要: laravel 辅助函数url()和asset()区别 https://laravel-admin.org/docs/zh/1.x/installation url('img/home1/'),生成的链接:http://localhost/img/home1/ url("/posts/{$post- 阅读全文

posted @ 2021-02-25 21:13 防空洞123 阅读(265) 评论(0) 推荐(0) 编辑

mysql limit和offset用法

摘要: limit和offset用法 mysql里分页一般用limit来实现 1. select* from article LIMIT 1,3 2.select * from article LIMIT 3 OFFSET 1 上面两种写法都表示取2,3,4三条条数据 当limit后面跟两个参数的时候,第一 阅读全文

posted @ 2021-02-25 09:57 防空洞123 阅读(128) 评论(0) 推荐(0) 编辑

Laravel 上传文件缩略图

摘要: 这里需要注意两个地方: 表单提交方式需要是 post form 添加一个属性为 enctype="multipart/form-data" 在 index.html 加入input 标签 <!DOCTYPE html> <html lang="en"> <head> <meta charset="U 阅读全文

posted @ 2021-02-25 09:48 防空洞123 阅读(73) 评论(0) 推荐(0) 编辑

导航