Document Employee Salary Bonus Supervisor Stephen C. Cox $300 $50 Bob Josephin Tan $150 - Annie Joyce Ming $200 $35 Andy James A. Pentel $175 $25 Anni ...
分类:
Web程序 时间:
2021-01-26 12:20:56
阅读次数:
0
表格美化 --> 标题1 标题1 标题1 标题1 标题1 内容 内容 内容 内容 内容 内容 内容 内容 内容 内容 分页代码 --> Info Header 1 Info Header 2 Info Header 3 操作 Text 1A Text 1B Text 1C Text 2A Text ...
分类:
Web程序 时间:
2021-01-26 12:17:01
阅读次数:
0
code from flask import Flask, jsonify, abort, request app = Flask(__name__) books = [ { 'id': 1, 'title': u'论语', 'auther': u'孔子', 'price': 18 }, { 'id ...
分类:
其他好文 时间:
2021-01-26 12:15:52
阅读次数:
0
直接上demo package main import ( "context" "fmt" limt "go.uber.org/ratelimit" "golang.org/x/time/rate" "github.com/juju/ratelimit" "time" ) func Demo1() ...
分类:
其他好文 时间:
2021-01-25 10:36:25
阅读次数:
0
Part 1: 住处 Do you live in a house or a flat? Which is your favourite room in your house / flat? What do you like about the area that you live in? Is t ...
分类:
其他好文 时间:
2021-01-22 12:11:42
阅读次数:
0
用jQuery和ajax 和json实现之前的所有功能: 登录: <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> ...
分类:
其他好文 时间:
2021-01-22 12:09:34
阅读次数:
0
主要是一个简单的demo测试 1.首先找到一个html查看源码如图 如果是这样的一段代码,我们的目标是获取a标签中的href内容,和文本内容,以及<span></span>标签中的日期,和p标签中的数据 2.开始做准备 (1)加入相关工具包 <!-- html解析jar --> <dependenc ...
分类:
编程语言 时间:
2021-01-22 12:05:17
阅读次数:
0
import requestsimport refrom lxml import etree# source = requests.get('http://www.paoshu8.com/0_984/746463.html').content.decode('utf8')# #print(sourc ...
分类:
编程语言 时间:
2021-01-21 10:48:04
阅读次数:
0
ajax原生写法 一.get写法 //创建对象 let xhr = new XMLHttpRequest() xhr.open('get',"url?name=&age=") //查询字符串 xhr.send(null) 请求体 xhr.onreadystatechange = function() ...
分类:
Web程序 时间:
2021-01-19 12:06:29
阅读次数:
0
定义支持多值参数的函数 有时需要一个函数能够处理参数个数不确定,这是需要使用多值参数。 Python中有两种多值参数: 参数名前增加一个 * 可以接收元组 参数名前增加一个 ** 可以接收字典 【多值参数传递】 复制代码 def demo(num, *nums, **person): print(n ...
分类:
编程语言 时间:
2021-01-18 11:32:19
阅读次数:
0