打开ueditor.all.js 将 iconDir = URL + (URL.substr(URL.length - 1) == '/' ? '':'/') + 'dialogs/attachment/fileTypeImages/'; 更改为:iconDir = '/include/uedito ...
分类:
Web程序 时间:
2020-06-25 15:44:37
阅读次数:
71
Descpition There are n people and 40 types of hats labeled from 1 to 40. Given a list of list of integers hats, where hats[i] is a list of all hats pr ...
分类:
其他好文 时间:
2020-06-25 13:58:26
阅读次数:
56
Hello all,i have some problem with NtFlushBuffersFile(). I should call it in virtual FS driver. Only one reference I have found - in ntdll.dll, but dr ...
分类:
其他好文 时间:
2020-06-25 10:16:30
阅读次数:
70
打开ueditor.all.js 注释掉以下三行 // var root = UE.htmlparser(html);// me.filterInputRule(root);// html = root.toHtml(); 将 html.push(creatInsertStr( vi.url, vi ...
分类:
其他好文 时间:
2020-06-25 10:09:08
阅读次数:
94
kubeadm config images list --kubernetes-version=v1.11.1 kubeadm reset kubectl get pods -n kube-system kubectl get pods --all-namespaces export KUBECON ...
分类:
其他好文 时间:
2020-06-25 09:35:40
阅读次数:
73
#include <bits/stdc++.h> #define ll long long #define fr first #define sc second #define pii pair<int, int> #define all(v) v.begin(), v.end() using na ...
分类:
其他好文 时间:
2020-06-25 09:24:44
阅读次数:
104
Given a collection of distinct integers, return all possible permutations. Example: Input: [1,2,3] Output: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1, ...
分类:
其他好文 时间:
2020-06-24 23:53:58
阅读次数:
104
You are given two arrays (without duplicates) nums1 and nums2 where nums1’s elements are subset of nums2. Find all the next greater numbers for nums1' ...
分类:
其他好文 时间:
2020-06-24 23:43:31
阅读次数:
50
Promise 是异步编程的一种解决方案。 Promise /** * 属性 */ Promise.length Promise.prototype /** * 方法 */ Promise.all(iterable) // 所有成功触发成功 任何失败触发失败 Promise.race(iterabl ...
分类:
其他好文 时间:
2020-06-24 21:33:06
阅读次数:
47
泛授权方式 数据库本地直接登录上数据库: mysql -h localhost -u root 然后执行以下命令,授权完后直接就可以远程连接上。mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION; //赋予任何主机上以r ...
分类:
数据库 时间:
2020-06-24 19:52:35
阅读次数:
54