上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 41 下一页
摘要: /*取消代码赋值按钮*/.cnblogs_code_copy { display: none;}/*取消日历*/#blogCalendar {display: none;}/*取消随笔档案*/#sidebar_postarchive{display: none;}/*取消常用链接*/#sidebar 阅读全文
posted @ 2020-02-11 20:46 1769987233 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 我们任何时候都不应该自己拼接SQL语句! sqlInjectDemo("xxx' or 1=1#") sqlInjectDemo("xxx' union select * from user #") sqlInjectDemo("xxx' and (select count(*) from user 阅读全文
posted @ 2020-02-10 21:40 1769987233 阅读(284) 评论(0) 推荐(0) 编辑
摘要: import requests from lxml import etree from urllib import parse import re import json import threading from queue import Queue import hashlib class Sp 阅读全文
posted @ 2020-02-10 15:55 1769987233 阅读(236) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "net" "strings" ) // UDP server func main() { //源码:func ListenUDP(network string, laddr *UDPAddr) (*UDPConn, error) { conn 阅读全文
posted @ 2020-02-09 11:50 1769987233 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 1. 服务端 package main import ( "bufio" "fmt" "net" "os" "strings" ) // tcp server端 func processConn(conn net.Conn) { defer conn.Close() // 3. 与客户端通信 var 阅读全文
posted @ 2020-02-08 21:12 1769987233 阅读(119) 评论(0) 推荐(0) 编辑
摘要: package main import ( "encoding/json" "fmt" ) // 结构体与json // 1.序列化: 把Go语言中的结构体变量 --> json格式的字符串 // 2.反序列化: json格式的字符串 --> Go语言中能够识别的结构体变量 type person 阅读全文
posted @ 2020-02-08 17:06 1769987233 阅读(119) 评论(0) 推荐(0) 编辑
摘要: xorm表基本操作及高级操作 表结构基本操作 对表结构的操作最常见的操作是查询和统计相关的方法,我们首先来看相关实现: 条件查询 Id值查询:参数接收主键字段的值。例如: var user User engine.Id(1).Get(&user) 以上Id方法的使用,相当于如下sql语句: sele 阅读全文
posted @ 2020-02-08 15:16 1769987233 阅读(430) 评论(0) 推荐(0) 编辑
摘要: package main import "fmt" func main() { var s []student fmt.Printf("%T\n", s) //[]main.student fmt.Println(s) //[] //初始化结构体切片 s = []student{ { name: " 阅读全文
posted @ 2020-02-08 14:45 1769987233 阅读(4057) 评论(0) 推荐(0) 编辑
摘要: 一、xorm框架知识介绍 xorm安装 go get github.com/go-xorm/xorm mysql连接示例 本节内容中,我们将以连接mysql为案例,演示xorm的相关操作。 创建引擎 engine, err := xorm.NewEngine(driverName, dataSour 阅读全文
posted @ 2020-02-07 18:38 1769987233 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-02-06 12:04 1769987233 阅读(390) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 41 下一页