1.这部分是显示跳转到另一个Activity,这个被跳转的Activ叫做SecondActivity 写法一: Intent intent = new Intent(this,SecondActivity.class); intent.putExtra("account",accountText); ...
分类:
其他好文 时间:
2020-07-26 15:31:18
阅读次数:
105
解决layui时间控件清空之后无法正常使用的问题,以及时间范围的选择 共有两种解决方式: 方式一(layui 1.x): html代码: 1 2 3 4 5 6 7 8 9 10 11 12 <div class="layui-inline"> <div class="layui-input-inl ...
分类:
其他好文 时间:
2020-07-26 00:51:51
阅读次数:
112
前边有简单介绍过基于json-fn 解析处理json function 的,以下是一个整理 json.parse 的签名 JSON.parse(str, reviver) 解决说明 我们可以基于reviver 处理function 处理的方法 通过evel 以及Function 对象 参考方法 re ...
分类:
Web程序 时间:
2020-07-26 00:18:59
阅读次数:
108
<script> var s=""; function f() { for (i=100;i<1000;i++){ //取得数字:个位 十位 百位 var a=i%10; //个位 var c=parseInt(i/100); //百位-获取整数 var b=parseInt(i/10)%10; / ...
分类:
Web程序 时间:
2020-07-24 21:53:16
阅读次数:
91
reg_test.cpp内容如下: #include <vector> #include <fmt/format.h> #include <console_color.h> #include <re2/re2.h> using namespace re2; using namespace std; ...
分类:
其他好文 时间:
2020-07-24 21:48:06
阅读次数:
101
//数据滚动 div框 ul滚动 li (function ($) { $.fn.myScroll = function (options) { //默认配置 var defaults = { speed: 40, //滚动速度,值越大速度越慢 rowHeight: 24 //每行的高度 }; va ...
分类:
Web程序 时间:
2020-07-24 15:58:09
阅读次数:
80
1.对象与字符串之间的互转 将对象转换成为json字符串 String str = JSON.toJSONString(infoDo); json字符串转换成为对象 InfoDo infoDo = JSON.parseObject(strInfoDo, InfoDo.class); 2.对象集合与字 ...
分类:
Web程序 时间:
2020-07-24 15:27:15
阅读次数:
89
知网爬取勿做商用 import requests, time, parsel, re from selenium.webdriver.chrome.options import Options from urllib.parse import urlencode from selenium impo ...
分类:
其他好文 时间:
2020-07-23 16:07:56
阅读次数:
157
1:核心代码 JSONObject json=(JSONObject) JSON.parse(responseContent); byte [] compress=Base64.decodeBase64((json.getString("result").getBytes("UTF-8"))); ( ...
分类:
其他好文 时间:
2020-07-22 20:26:49
阅读次数:
74
在前端项目开发中,前端的本地存储是必不可少的,今天小编就前端的本地存储在项目中的使用详细的介绍一下。前端本地存储主要有: cookie localStorage sessionStorage webSQL/indexDB 接下来就这三种前端常用的存储方式进行介绍。 cookie cookie就是存储 ...
分类:
其他好文 时间:
2020-07-22 15:45:38
阅读次数:
59