iWebOffice2015:(可打开word,excel文件) <script src="office/WebOffice.js"></script><script src="office/jquery.min.js"></script> ···<div id="OfficeDiv" style= ...
分类:
Web程序 时间:
2020-07-24 16:29:37
阅读次数:
128
PUT /jzt_study_content { "mappings": { "content":{ "properties":{ "id":{ "type":"keyword" }, "title":{ "type":"text", "analyzer":"ik_max_word" }, "sor ...
分类:
其他好文 时间:
2020-07-24 16:26:16
阅读次数:
81
insert into t_user (id, avatar, create_time, email, nick_name, password, type, update_time, user_name, file_id, register_method, token, short_message, ...
分类:
数据库 时间:
2020-07-24 16:25:00
阅读次数:
102
由于工作需要必须将word文档内容粘贴到编辑器中使用 但发现word中的图片粘贴后变成了file:///xxxx.jpg这种内容,如果上传到服务器后其他人也访问不了,网上找了很多编辑器发现没有一个能直接解决这个问题 考虑到自己除了工作其他时间基本上不使用windows,因此打算使用nodejs来解决 ...
分类:
其他好文 时间:
2020-07-24 15:42:03
阅读次数:
70
既然要集成,第一步就是找到来源,直接到官方网站下载依赖。 官方网站地址:https://pandao.github.io/editor.md/ 下载之后解压下载文件 要是用的依赖基本就是用红框标注出来的,将需要的依赖丢入自己项目中的resources目录下 找到文本输入框的html,开始引入依赖。 ...
分类:
其他好文 时间:
2020-07-24 09:55:54
阅读次数:
143
[编程题] lc:最小路径和 题目描述 输入输出 思路 原地动态 规划 Java代码 class Solution { //方法:原地dp的动态规划 public int minPathSum(int[][] grid) { for(int i=0;i<grid.length;i++){ for(i ...
分类:
其他好文 时间:
2020-07-24 09:35:13
阅读次数:
66
1 package head.first.java.prize; 2 3 import java.util.*; 4 5 public class test { 6 private static final int mulriple = 5000; 7 public int luckDraw(Lis ...
分类:
编程语言 时间:
2020-07-24 09:26:37
阅读次数:
82
//点击事件 //上传图片 getImg() { if (this.fileList.length >= 9) { uni.showToast({ title: '上传数量上限', icon: 'none', duration: 1000 }) return } let that = this; u ...
分类:
移动开发 时间:
2020-07-23 23:25:34
阅读次数:
92
将本机的脚本在远程主机执行 #ssh 10.0.0.6 bash < /root/test2.sh {test2.sh >hostname -I} 10.0.0.6’s Password: 将远程主机上脚本在本机上运行 #ssh 10.0.0.7 /data/test.sh 10.0.0.7’s P ...
分类:
其他好文 时间:
2020-07-23 23:03:12
阅读次数:
82
function firstBiggerThanMe(arr){ let firstBiggerArr = new Array(arr.length).fill(-1) for(let i = 0;i < arr.length - 1;i++){ let item = arr[i] for(let ...
分类:
其他好文 时间:
2020-07-23 22:45:39
阅读次数:
87