1。主要说一说,顶部导航和左侧菜单的联动和切换。主要 组件components->topbar->inedx.vue <el-menu :default-active="activeMenu" class="el-menu-bar" mode="horizontal" :background-col ...
分类:
其他好文 时间:
2020-06-18 14:37:32
阅读次数:
140
The Matplotlib library is designed to work well with many different environments and platforms. As such, the library does not only contain routines fo ...
分类:
其他好文 时间:
2020-06-18 12:42:01
阅读次数:
56
MYSQL插入emoji表情时,会出现Incorrect string value的错误 将对应列的字符集改成utf8mb4 Caused by: java.sql.SQLException: Incorrect string value: '\xF0\x9F\x98\x84' for column ...
分类:
数据库 时间:
2020-06-18 11:05:39
阅读次数:
81
文件的操作(1) 同级文件的只读,文件不存在报错 file=open('wenjian',mode='r',encoding='utf-8') content = file.read() print(content) file.close() 同级文件的只写,文件不存在便新建一个 file=open ...
分类:
编程语言 时间:
2020-06-18 09:15:14
阅读次数:
66
python函数之进阶 1:函数嵌套 一:什么是函数嵌套 在一个函数内又定义了另外一个函数 二:函数定义 def foo(): def bar() print('from bar') bar() foo() # 这个是通过foo函数调用里面的bar函数 def foo(): def f2(): pr ...
分类:
编程语言 时间:
2020-06-17 23:28:25
阅读次数:
79
当前端页面与后台运行在不同的服务器时,就必定会出现跨域这一问题,本篇简单介绍解决跨域的三种方案,部分代码截图如下,仅供参考: Nginx代理 这种方式比较简单,将A应用和B应用都通过一个统一的地址进行转发,这样就可以避免跨域问题出现。 server { listen 80; server_name ...
分类:
其他好文 时间:
2020-06-17 23:24:35
阅读次数:
90
Which two statements are true about an Oracle database? (Choose two.) A table can have multiple foreign keys. A column definition can specify multiple ...
分类:
其他好文 时间:
2020-06-17 23:17:37
阅读次数:
65
添加属性 selModel:new Ext.selection.CheckboxModel({ checkOnly: true }), me.grid = Ext.create('Ext.grid.Panel', { store: me.store, border: false, //selType ...
分类:
Web程序 时间:
2020-06-17 20:31:38
阅读次数:
66
flex父项设置flex-direction: // 默认主轴的方向,水平向右;侧轴垂直向下 row【默认值】 / row-reverse / column / column-reversejustify-content:space-around //设置主轴上子元素排列方式 flex-start【... ...
分类:
移动开发 时间:
2020-06-17 20:15:40
阅读次数:
58
父组件: DOM部分 <el-table-column prop="img" :label="label" width="180"> <template slot-scope="scope"> <div class="img-wrap"> <img v-lazy="scope.row.album.p ...
分类:
其他好文 时间:
2020-06-17 12:41:24
阅读次数:
159