码迷,mamicode.com
首页 >  
搜索关键字:synchronized method    ( 16544个结果
vue进阶知识点
一、listeners 2.4.0 新增 这两个是不常用属性,但是高级用法很常见; 1.场景如果父传子有很多值那么在子组件需要定义多个解决attrs获取子传父中未在 props 定义的值 // 父组件<home title="这是标题" width="80" height="80" imgUrl=" ...
分类:其他好文   时间:2020-07-10 13:30:59    阅读次数:59
vue中导出Excel文件流
1、封装导出的方法 export function httpExport (url, params) { return new Promise((resolve, reject) => { axios({ url: url, method: 'post', data: params, respons ...
分类:其他好文   时间:2020-07-10 13:28:45    阅读次数:103
java正则解析ip
public class test { public static void main(String[] args) { // TODO Auto-generated method stub String ipsearch="11.168.1.101-103/126/129/200-204"; ip ...
分类:编程语言   时间:2020-07-10 13:01:53    阅读次数:84
登录用例
id title method url request_data expected check_sql1 登录成功 post /member/login {"mobile_phone":"#phone#","pwd":"12345567"} {"code":0,"msg":"OK"} 2 账号为10 ...
分类:其他好文   时间:2020-07-10 11:45:11    阅读次数:94
VueJs echarts使用
VueJs echarts使用 栗子 渲染echart一定是要在 mounted 生命周期中使用,created只是创建dom。 <!DOCTYPE html> <html> <head> <title></title> <link rel="stylesheet" href="https://cd ...
分类:Web程序   时间:2020-07-10 09:26:51    阅读次数:97
pechkin 导出https路径的图片
使用Pechkin.Synchronized可以方便导出html为pdf,但是对于https路径的图片并不支持,仅支持http路径下的图片 解决方案:图片使用本地绝对路径(相对于服务器) 以下是我获取本地绝对路径的方法 #region 获得当前绝对路径 /// <summary> /// 获得当前绝 ...
分类:Web程序   时间:2020-07-10 00:46:00    阅读次数:116
登陆界面
注册页面 新用户注册 USER REGISTER </div> <div class="rg_center"> <div class="rg_form"> <!--定义表单 form--> <form action="#" method="post"> <table> <tr> <td class= ...
分类:其他好文   时间:2020-07-10 00:24:22    阅读次数:68
初学python,小记二
1、文件读写模式 r: 读取模式(默认值) w: 写入模式 x: 独占写入模式 a: 附加模式 b: 二进制模式(与其他模式结合使用) t: 文本模式(默认值,与其他模式结合使用) +: 读写模式(与其他模式结合使用) >>>>使用open函数打开文件 f = open("test.txt"); > ...
分类:编程语言   时间:2020-07-10 00:05:48    阅读次数:56
JUC_synchronized
synchronized 注意事项:1、synchronized (Object ) --不能使用 String常量 Integer long 2 线程同步 -synchronize 锁的是对象不是代码 this XX.classs 加锁的方法跟不加锁的方法可以同时运行 互不干扰 锁升级 --1. ...
分类:其他好文   时间:2020-07-10 00:03:54    阅读次数:70
Spring零配置之@Configuration注解详解
@Configuration介绍 Spring3.0之前要使用Spring必须要有一个xml配置文件,这也是Spring的核心文件,而Spring3.0之后可以不要配置文件了,通过注解@Configuration完全搞定。 @Configuration即用来代替Spring配置文件的,它就是一个@C ...
分类:编程语言   时间:2020-07-09 12:32:42    阅读次数:98
16544条   上一页 1 ... 53 54 55 56 57 ... 1655 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!