Home.vue <template> <!-- 所有的内容要被根节点包含起来 --> <div id="home"> <v-header ref="header"></v-header> <hr> 首页组件 <button @click="getChildData()">获取子组件的数据和方法</ ...
分类:
其他好文 时间:
2020-09-17 16:18:13
阅读次数:
24
names = ['A','B','C',['D','E'],['F']] def print_lol(the_list,indent=False,level=0): # for each_item in the_list: if isinstance(each_item,list): print_ ...
分类:
其他好文 时间:
2020-09-17 16:13:35
阅读次数:
26
app.vue <template> <div id="app"> <v-home></v-home> </div> </template> <script> import Home from './components/Home.vue'; export default { data () { r ...
分类:
移动开发 时间:
2020-09-17 15:45:01
阅读次数:
33
问题 给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。 代码 贪心算法 核心思想就是检查之前 i-1 的元素和,如果小于零就舍弃——对应下面第六行代码 1 class Solution { 2 public: 3 int maxSubArray( ...
分类:
其他好文 时间:
2020-09-17 14:20:44
阅读次数:
24
一、Shell编程四剑客之Find Find工具主要用于操作系统文件、目录的查找,其语法参数格式为: find path -option [ -print ] [ -exec -ok command ] { } \; 其option常用参数详解如下: -name filename #查找名为file ...
分类:
系统相关 时间:
2020-09-17 13:14:45
阅读次数:
44
Quick Start 导入 Jedis 所需要的 jar 包:Commons-pool-1.6.jar、Jedis-2.1.0.jar 编写程序测试连通性 public class Test { public static void main(String[] args) { Jedis jedi ...
分类:
其他好文 时间:
2020-09-17 13:00:03
阅读次数:
26
数据结构八大排序中的图解 1.排序的基本概念 2.交换类排序法 ? 1-冒泡排序 ? 2-快速排序 #include <stdio.h> #include <stdlib.h> #include <string.h> int stack[512]; int top = 0; void init_st ...
分类:
编程语言 时间:
2020-09-17 12:34:28
阅读次数:
20
发送按钮悬停效果 效果图 HTML <div id="send-btn"> <button> // 这里是一个svg的占位 Send </button> </div> CSS #send-btn{ display: flex; align-items: center; justify-content ...
分类:
Web程序 时间:
2020-09-17 11:59:12
阅读次数:
50
/** * 关于通用页面跳转的说明 *url地址: /page/item-add *url地址: /page/item-list *url地址: /page/item-param-list * *常规: 1个请求对应一个controller方法 * @RequestMapping("/page/it ...
分类:
其他好文 时间:
2020-09-16 12:15:52
阅读次数:
36
监听复选框 监听点击事件 两个按钮放在<script>中 <script type="text/html" id="toolbarDemo"> <div class="layui-btn-container demoTable"> <button class="layui-btn layui-btn ...
分类:
其他好文 时间:
2020-09-16 12:11:02
阅读次数:
32