上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 49 下一页
摘要: # 1、index(value, start, end):在区间查找value出现的位置索引。 # 2、count(value):计算元组中value元素出现的个数。 # index和count与字符串和列表中的用法相同 if __name__ == "__main__": t1 = ("1", 1 阅读全文
posted @ 2022-10-10 10:57 样子2018 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 代码只能作为学习,请不要用于其他。 一、效果图 二、代码编写 1、items.py # -*- coding: utf-8 -*- # Define here the models for your scraped items # # See documentation in: # https:// 阅读全文
posted @ 2022-10-10 08:42 样子2018 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 一、安装插件 npm i dplayer -S npm i hls.js -S 二、代码示例 <template> <view class="content"> <div id="dplayer" style="height: 450px; width: 800rpx;"></div> </view 阅读全文
posted @ 2022-09-22 16:33 样子2018 阅读(1627) 评论(0) 推荐(0) 编辑
摘要: 一、sqlite3封装 <?php class SQLiteDB extends SQLite3 { function __construct(){ try { //打开数据库文件 $this->open('./ccfcf4572e60f80522c1cf0f8e4b95c3.db'); }catc 阅读全文
posted @ 2022-09-16 10:49 样子2018 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 一、注意 当设置speed太小时会有卡顿,建议设置为6000 二、效果图 三、代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>swiper4 无缝轮播处理</title> <link rel="styl 阅读全文
posted @ 2022-09-03 11:26 样子2018 阅读(1054) 评论(0) 推荐(0) 编辑
摘要: 一、项目目录 二、配置.htaccess 其中主要的是.htaccess文件配置 <IfModule mod_rewrite.c> if (!-f $request_filename){ set $rule_0 1$rule_0; } if ($rule_0 = "1"){ rewrite ^/([ 阅读全文
posted @ 2022-08-30 10:32 样子2018 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 一、代码 /** * @throws \think\Exception */ protected function getDb(){ if(!$this->my_db){ $this->my_db = Db::connect(config('db2')); } } config.php 阅读全文
posted @ 2022-08-27 14:42 样子2018 阅读(136) 评论(0) 推荐(0) 编辑
摘要: TreeTable.js下载 链接:https://pan.baidu.com/s/1lLBge_4MSSViLztwTnPfkA 提取码:whj3 一、效果图 二、前端代码 {include file='common/header'} <div class="layui-fluid"> <div 阅读全文
posted @ 2022-08-01 10:52 样子2018 阅读(2921) 评论(0) 推荐(0) 编辑
摘要: 一、安装 1、windows安装教程 下载地址:https://github.com/imaben/php-beast-binaries 将下载的扩展放入对应php的ext目录 修改php.ini 添加配置:extension=php_beast_x64_nts.dll,重启服务器 2、Linux安 阅读全文
posted @ 2022-07-23 17:03 样子2018 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 一、对父级设置固定高度 二、加css clear解决父div不能自适应高度 三、对父级样式加overflow样式 阅读全文
posted @ 2022-07-22 16:46 样子2018 阅读(24) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 49 下一页