动态赋值 var str = ''; for (var i = 0; i < response.data.id_with_codes.length; i++){ str += '<option value="'+ response.data.id_with_codes[i][0] +'">'+ re ...
分类:
其他好文 时间:
2021-02-15 12:19:35
阅读次数:
0
Posted on 2019年12月6日Leave a comment Contents [hide] 1 前言 2 现象 3 原因 4 解决方案 4.1 方案一 4.2 方案二 4.3 方案三 5 验证方式 6 影响范围 7 原理解释 7.1 kmem 是什么 7.2 cgroup 与 kmem机 ...
分类:
其他好文 时间:
2021-02-03 10:41:15
阅读次数:
0
mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl yml里面配置了mybatis.xml文件 <configuration> <settings> <setting name="mapUndersco ...
分类:
数据库 时间:
2021-01-22 12:18:26
阅读次数:
0
花了挺多时间的一题,学到了很多,很有必要详细记录一下 打开环境,发现是个留言板,想要发贴,需要先登入 zhangwei zhangwei666 很明显的提示,直接猜中 看着留言板,第一感觉是sql注入 ,一直在找注入点,没找到。后知后觉,还没扫源码 扫下源码 Git泄露,Githacker 恢复下, ...
分类:
其他好文 时间:
2021-01-20 12:09:28
阅读次数:
0
请求HttpRequest 提示: 用户发送请求时携带的参数后端需要使用,而不同的发送参数的方式对应了不同的提取参数的方式 所以要学会如何提取参数,我们就需要先了解前端传参数有哪些方式 回想一下,利用HTTP协议向服务器传参有几种途径? 查询字符串数据(query string): 形如:?key1 ...
分类:
Web程序 时间:
2021-01-19 12:23:48
阅读次数:
0
# 先定义dataframe各列的数据类型 from pyspark.sql.types import *schema = StructType([ StructField("a", NullType(), True), StructField("b", AtomicType(), True), S ...
分类:
其他好文 时间:
2021-01-18 11:29:36
阅读次数:
0
strip_tags strip_tags ( string $str , string $allowable_tags = ? ) : string 该函数尝试返回给定的字符串 str 去除空字符、HTML 和 PHP 标记后的结果。它使用与函数 fgetss() 一样的机制去除标记。 str 输 ...
分类:
Web程序 时间:
2021-01-18 10:41:39
阅读次数:
0
this指向的对象是运行时所在的对象,而不是表面代码中所处的对象 以下三种情况,this指向全局对象 情况一 (obj.foo = obj.foo)() // window 情况二 (false || obj.foo)() // window 情况三 (1, obj.foo)() // window ...
分类:
其他好文 时间:
2021-01-08 11:39:52
阅读次数:
0
转换 //int转bigdecimal?BigDecimal number = new BigDecimal(0);int value=score;number=BigDecimal.valueOf(value);//可以简化成 BigDecimal bigDecimal= BigDecimal.v ...
分类:
其他好文 时间:
2021-01-07 12:26:01
阅读次数:
0
转自:https://blog.csdn.net/rong_toa/article/details/110845945 《ARM SMMU原理与IOMMU技术(“VT-d” DMA、I/O虚拟化、内存虚拟化)》 《提升KVM异构虚拟机启动效率:透传(pass-through)、DMA映射(VFIO、 ...
分类:
系统相关 时间:
2021-01-07 12:01:57
阅读次数:
0