https://stackoverflow.com/questions/18887689/print-report-directly-on-jasperreports-server var url=document.location.href+'&output=pdf'; var printWind ...
分类:
Web程序 时间:
2020-06-03 09:28:52
阅读次数:
88
引入依赖1 <dependency> 2 <groupId>ch.ethz.ganymed</groupId> 3 <artifactId>ganymed-ssh2</artifactId> 4 <version>262</version> 5 </dependency> 创建Connection并 ...
分类:
编程语言 时间:
2020-06-03 00:33:24
阅读次数:
61
Math.random():获取0~1随机数Math.floor() method rounds a number DOWNWARDS to the nearest integer, and returns the result. (小于等于 x,且与 x 最接近的整数。)其实返回值就是该数的整数位 ...
分类:
其他好文 时间:
2020-06-02 23:05:56
阅读次数:
90
Idea 添加注释:类注释、方法注释类注释方法注释类注释File–Setting–Editor–File and Code Templates–Class:注释模板: /** * *@description: *@author: Andy *@time: ${DATE} ${TIME} * */ 操 ...
分类:
其他好文 时间:
2020-06-02 18:49:12
阅读次数:
104
改之前: 然后在保证不跳转到其他页面,在本页面中进行路由跳转,实现title的变更 改之后: 在当前页面就实现了title的动态改变。 下边是实现的方法: 在点击下一步的时候: 动态添加url并且携带自己改的参数,并存储一下当前页面的值。 location.href = `/insurantImpo ...
分类:
其他好文 时间:
2020-06-02 14:59:13
阅读次数:
144
一、vue-router vue-router是vue.js的官方路由管理器。可以方便构建单页应用。 二、vue-router使用 1.安装 vue add router 2.router.js * 使用vue-router插件 import VueRouter from'vue-router' V ...
分类:
其他好文 时间:
2020-06-02 12:58:28
阅读次数:
63
$result = [1,2,'a','中国','USA']; $res = json_encode($result, JSON_UNESCAPED_UNICODE); // 转为JSON字符串 JSON_UNESCAPED_UNICODE :防止中文乱码 var_dump($res); var_d ...
分类:
Web程序 时间:
2020-06-02 10:56:25
阅读次数:
73
1、编译安装LNMP,并安装wordpress1.1安装php,php-mysql,myql,php-fpm[root@c1~]#yuminstallphpphp-mysqlngnixmariadb-serverphp-fpm-y1.2编译安装nginx1.2.1安装依赖包[root@c1nginx]#yuminstallgccpcre-developenssl-develzlib-devel-y
分类:
其他好文 时间:
2020-06-02 09:47:26
阅读次数:
90
ngx_http_index_module ############## index模块 Syntax: index file ...; # 语法 Default: index index.html; # 系统默认 Context: http, server, location # 环境(放哪) # ...
分类:
其他好文 时间:
2020-06-02 00:08:45
阅读次数:
73
bash shell中,我们执行echo {1..10},会打印1-10这些数字 [root@localhost ~]# echo {1..10} 1 2 3 4 5 6 7 8 9 10 但是有个前提,这其中的{1..10}不能带上引号,单双引号,反引号都不行。这是花括号的实现限制,如果想仔细了解 ...
分类:
其他好文 时间:
2020-06-02 00:01:11
阅读次数:
100