上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 41 下一页
摘要: 选择合适的PHP框架及前端框架布局页面(10分) 首先展示出分类列表,每个分类下只显示3条信息,无需分页 (30分) 在列表页 点击文章标题进入详细页面,对应的文章点击量+1(30分) 在详细页面点击上一篇 下一篇显示对应的文章详情(30分) 博客参考: https://blog.csdn.net/ 阅读全文
posted @ 2021-12-22 10:08 王越666 阅读(73) 评论(0) 推荐(0)
摘要: 目录文件下新建一个BaseConttoller控制器 <?php namespace App\Http\Controllers\Task\Task13; use App\Http\Controllers\Controller; use Illuminate\Http\Request; class B 阅读全文
posted @ 2021-12-21 21:21 王越666 阅读(52) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-12-21 16:04 王越666 阅读(44) 评论(0) 推荐(0)
摘要: int file_put_contents ( string $filename , mixed $data [, int $flags = 0 [, resource $context ]] ) 参数描述 file 必需。规定要写入数据的文件。如果文件不存在,则创建一个新文件。 data 必需。规 阅读全文
posted @ 2021-12-21 10:58 王越666 阅读(41) 评论(0) 推荐(0)
摘要: wxml: <view class="page-section-spacing"> <view> <text>商家列表</text> </view> <scroll-view scroll-y="true" class="page-scroll-style" bindscrolltolower="s 阅读全文
posted @ 2021-12-19 21:03 王越666 阅读(79) 评论(0) 推荐(0)
摘要: 更多解读可使用博客: https://www.jianshu.com/p/86d73745e01c 实现流程:1.在文本框中输入关键字key,如“比赛”,检索出比赛相关的列表key = 小程序2.处理结果列表:在key的前后加分隔符,如“%%”3.通过第2步的分隔符进行切割,获取新的数组:str.s 阅读全文
posted @ 2021-12-19 20:02 王越666 阅读(1663) 评论(0) 推荐(0)
摘要: wxml 代码: <!-- 授权 --> <button type="primary" open-type="getUserInfo" bind:tap="getUserProfile">授权登录</button> <!-- 获取用户手机号 --> <button open-type="getPho 阅读全文
posted @ 2021-12-18 19:45 王越666 阅读(1693) 评论(0) 推荐(0)
摘要: html: 设置页面改变事件 <div id="show"> <div class="page-container" style="width: 300px"> <label >科室下拉搜索</label> <div> <select name="interest" id="serarch" onc 阅读全文
posted @ 2021-12-14 21:49 王越666 阅读(60) 评论(0) 推荐(0)
摘要: 1.1.1 查询所有数据 $selData = DB::table('article')->get(); 1.1.2 单条件查询 #DB::table('表名')->where('字段','表达式','数据')->get(); $selData = DB::table('article')->whe 阅读全文
posted @ 2021-12-14 09:59 王越666 阅读(49) 评论(0) 推荐(0)
摘要: 将数据拼装成如下格式 id 奖品(prize) 概率(rate) 数量(num) 已抽数量(prize_num) 1 一等奖 10% 10 0 2 二等奖 15% 20 0 3 三等奖 35% 50 0 根据如上实现抽奖如下($prizes表示上面表格数据) public function prom 阅读全文
posted @ 2021-12-14 09:13 王越666 阅读(232) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 41 下一页