上一页 1 2 3 4 5 6 7 8 9 10 ··· 38 下一页
摘要: 案例 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>个人资料管理</title> <meta name="renderer" content="webkit"> <meta http-equiv="X-UA-Compatibl 阅读全文
posted @ 2022-03-25 11:16 Bonnie_ξ 阅读(317) 评论(0) 推荐(0) 编辑
摘要: tool里面的不是table的ID,而是table中设置的属性:lay-filter的值,如果没有此属性需要增加 阅读全文
posted @ 2022-03-25 10:26 Bonnie_ξ 阅读(280) 评论(0) 推荐(0) 编辑
摘要: layui表单中的inline和block: block: block元素会独自占一行,多个block元素各自新起一行,默认情况下 ,block元素宽度自动填充其父元素宽度 <div class="layui-form-item"> <label class="layui-form-label">单 阅读全文
posted @ 2022-03-25 10:15 Bonnie_ξ 阅读(998) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-03-25 09:56 Bonnie_ξ 阅读(166) 评论(0) 推荐(0) 编辑
摘要: import os rootdir = '/media/Stanford3dDataset_v1.2_Aligned_Version' for root,dirs,files in os.walk(rootdir): for dir in dirs: print(os.path.join(root, 阅读全文
posted @ 2022-03-15 16:06 Bonnie_ξ 阅读(615) 评论(0) 推荐(0) 编辑
摘要: 插件地址:https://plugins.jetbrains.com/plugin/index?xmlId=com.zhaow.restful.toolkit 可在 idea 插件库中安装 1.根据 URL 直接跳转到对应的方法定义 ( Ctrl \ or Ctrl Alt N ); 2.提供了一个 阅读全文
posted @ 2022-03-10 09:57 Bonnie_ξ 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 第一步:创建一个layuiTest项目,结构如下 第二步:新建一个test.js,利用layui.define定义一个模块test,并向外暴露该模块,该模块里面有两个方法method1和method2. 第三步:新建一个test.html,在该页面引入layui.js,并通过layui.config 阅读全文
posted @ 2022-03-09 14:38 Bonnie_ξ 阅读(509) 评论(0) 推荐(0) 编辑
摘要: 使用layui.define()方法来扩展模块、当然模块中你也可以使用layui的其他方法、如下 layui.define('layer', callback); 在定义扩展模块的时候、我需要使用layui的layer模块、然后在回调函数中定义自己的方法 layui.define(["layer", 阅读全文
posted @ 2022-03-08 17:51 Bonnie_ξ 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 1.导出整个数据库 1mysqldump -u 用户名 -p –default-character-set=latin1 数据库名 > 导出的文件名(数据库默认编码是latin1) 2 3mysqldump -u wcnc -p smgp_apps_wcnc > wcnc.sql 2.导出一个表 1 阅读全文
posted @ 2022-02-28 15:58 Bonnie_ξ 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1、Slicing s = ' hello ' s = s[:] print(s) # hello s = ' hello ' s = s[3:8] print(s) # hello 2、strip() s = ' hello '.strip() print(s) # hello s = '###h 阅读全文
posted @ 2022-02-28 15:53 Bonnie_ξ 阅读(47) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 38 下一页