"autoload": { "classmap": [ "database" ], "psr-4": { "App\\": "app/" }, "files":[ "app/Common/function.php", "api/qqOauth/qqConnectAPI.php" ] }, 比如我新增 ...
分类:
其他好文 时间:
2020-12-28 10:52:36
阅读次数:
0
1、 sudo apt-get install nfs-kernel-server # 安装 NFS服务器端 sudo apt-get install nfs-common # 安装 NFS客户端 2、添加NFS目录 sudo vim /etc/exports 若需要把 “/nfsroot” 目录设 ...
分类:
系统相关 时间:
2020-12-25 12:51:18
阅读次数:
0
####盒子随内容变大 ###html <div class="shopcar iconfont icon-gouwuche icon-zhankai1"> 我的购物车 <i class="count">8000000</i> </div> ###common.css .shopcar { posi ...
分类:
其他好文 时间:
2020-12-25 12:31:12
阅读次数:
0
题目 给你一个字符串 s ,请你去除字符串中重复的字母,使得每个字母只出现一次。需保证 返回结果的字典序最小(要求不能打乱其他字符的相对位置)。 注意:该题与 1081 https://leetcode-cn.com/problems/smallest-subsequence-of-distinct ...
分类:
其他好文 时间:
2020-12-25 11:41:11
阅读次数:
0
from selenium import webdriver # 成功导入第三方包 import time from selenium.webdriver.common.action_chains import ActionChains db = webdriver.Chrome() # 选择浏览器 ...
分类:
其他好文 时间:
2020-12-23 12:33:54
阅读次数:
0
Ubuntu 18.04 彻底卸载MySQL 5.7.31 1. 查看MySQL的依赖项 dpkg --list|grep mysql 2. 卸载 mysql-common sudo apt remove mysql-common 3. 卸载 mysql-server sudo apt autore ...
分类:
数据库 时间:
2020-12-22 13:13:25
阅读次数:
0
package tools.guava; import com.google.common.base.Joiner; import com.google.common.base.Splitter; import com.google.common.collect.ArrayListMultimap; ...
分类:
编程语言 时间:
2020-12-19 12:06:13
阅读次数:
2
题目: 题目大意: 在数组中寻找和最大的一段连续的序列 思路: 用贪心的做法,从第一个开始,累加a[i],如果sum<0就把这一段给舍去掉,从新的起点开始,如果sum>max,则进行信息的更新 #include <iostream> using namespace std; const int MA ...
分类:
其他好文 时间:
2020-12-18 12:36:16
阅读次数:
2
【问题】mysql从5.6升级到5.7后出现:插入数据和修改数据时出错Caused by: com.ibatis.common.jdbc.exception.NestedSQLException: The error occurred while applying a parameter map. ...
分类:
数据库 时间:
2020-12-18 12:26:29
阅读次数:
2
本文译自https://towardsdatascience.com/10-common-software-architectural-patterns-in-a-nutshell-a0b47a1e9013?gi=f8addb915af7,作者VijiniMallawaarachchi,Sep4,2017译者:evandeng2009(blog.csdn.net/evandeng2009/)为了更
分类:
其他好文 时间:
2020-12-18 12:15:51
阅读次数:
2