listview1.clear; with adoquery1 do begin Sql.text := 'Select * from table1'; Open ; while not eof do begin with listview1.items.add do begin caption : ...
分类:
数据库 时间:
2021-01-08 10:39:50
阅读次数:
0
【单选框美化】 <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>HTML5 CSS3 SVG 水滴粘连动画的Radiobox单选框</title> <style> body { align-items: c ...
分类:
Web程序 时间:
2021-01-06 11:42:30
阅读次数:
0
1. forEach and Map普通方式遍历 Map Map<String, Integer> items = new HashMap<>(); items.put("A", 10); items.put("B", 20); items.put("C", 30); items.put("D", ...
分类:
编程语言 时间:
2021-01-05 10:40:24
阅读次数:
0
简介 Scrapy是爬取网站,提取结构性数据并存储的应用框架。对爬取过程中的请求、返回、解析、存储、调度等流程提供模块化支持。 items模块——定义需要爬取的数据字段 保存爬取到的数据的容器,python的字典类型。根据网站数据对item进行定义字段。 # items示例 import scrap ...
分类:
其他好文 时间:
2020-12-29 11:43:51
阅读次数:
0
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Ins ...
分类:
其他好文 时间:
2020-12-24 12:46:11
阅读次数:
0
将数据中的某个字段重复排列出来,fake这部分,达到一条数据变成上千条数据展示 raw=$(cat /tmp/stock.json) 重复多次执行: raw=$(echo $raw |jq '.data.items+=.data.items'| jq '.data.items_size+=.data ...
分类:
其他好文 时间:
2020-12-18 13:09:39
阅读次数:
3
ListView在delphi中的常用用法 //增加 i := ListView1.Items.Count; with ListView1 do begin ListItem:=Items.Add; ListItem.Caption:=IntToStr(i); ListItem.SubItems.A ...
function fun_page(){ var url="${root}/book/page"; 获取一个地址 var data={"index":index,"size":size,"step":step}; 以键值对封装分页的参数:第几页,显示的行数,起始页 $.getJSON(url,dat ...
分类:
Web程序 时间:
2020-12-15 12:31:51
阅读次数:
7
var items = ['A','B','C','D']var values = [50,220,60,60]var weights = [5,20,10,12]var capacity = 32 //背包容积greedy(values, weights, capacity) // 320func ...
分类:
编程语言 时间:
2020-12-09 12:29:02
阅读次数:
16
###Hole-in-the-wall café goes viral A Shanghai coffee shop called Hinichijou has gone viral among netizens because of its quirky concept which involve ...
分类:
其他好文 时间:
2020-12-09 12:19:14
阅读次数:
4