上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 34 下一页
摘要: package main import ( "io/ioutil" "fmt" "net/http" "encoding/json" ) type Eth struct { Status int Data Ticker } type Ticker struct { Ticker []float64 Seq int } func main() { httpGet() } fun... 阅读全文
posted @ 2018-12-18 16:24 西瓜霜 阅读(4420) 评论(0) 推荐(0) 编辑
摘要: 感谢 https://blog.csdn.net/m0_38092942/article/details/81354184 比如对象如下 转化为数据 获取数据(重点在这里) 阅读全文
posted @ 2018-12-13 15:20 西瓜霜 阅读(2894) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/ps-blog/p/6732448.html 调用案例 这样就提交请求,并且获取请求结果了。 一般返回的结果是json格式的。 方式2 /** * 模拟post进行url请求 * @param string $url * @param array $p 阅读全文
posted @ 2018-12-13 10:54 西瓜霜 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 这是我的源码比较简陋 https://www.lanzous.com/i2l7h8f 感谢 https://www.cnblogs.com/woider/p/6980456.html 下载phpmail https://github.com/PHPMailer/PHPMailer 使用里面的phpm 阅读全文
posted @ 2018-12-12 10:59 西瓜霜 阅读(840) 评论(0) 推荐(0) 编辑
摘要: 感谢 https://blog.csdn.net/u013485530/article/details/80906569 https://blog.csdn.net/shengzhu1/article/details/53489958 阅读全文
posted @ 2018-11-30 18:05 西瓜霜 阅读(3355) 评论(0) 推荐(0) 编辑
摘要: 感谢 https://blog.csdn.net/sjy8207380/article/details/79013827 解决的方法 · 利用取近似值的方法解决这个问题。 (1)利用fmt.Sprintf() func Round2(f float64, n int) float64 { float 阅读全文
posted @ 2018-11-30 15:56 西瓜霜 阅读(6232) 评论(0) 推荐(0) 编辑
摘要: package main import ( "crypto/hmac" "crypto/sha1" "encoding/base64" "encoding/json" "errors" "fmt" "net/http" "net/url" "strings" "time" "math/rand" "strconv" . "github.com/nn 阅读全文
posted @ 2018-11-29 15:27 西瓜霜 阅读(3068) 评论(0) 推荐(0) 编辑
摘要: func RandInt64(min, max int64) int64 { if min >= max || min == 0 || max == 0 { return max } rand.Seed(time.Now().UnixNano()) return rand.Int63n(max-mi 阅读全文
posted @ 2018-11-26 16:43 西瓜霜 阅读(570) 评论(0) 推荐(0) 编辑
摘要: 感谢 http://blog.sina.com.cn/s/blog_1885d23df0102ydjc.html http://www.3322.cc/soft/38102.html 下载 </form> https://www.lanzous.com/b499535/ 下载之后,吧文件后面的.zi 阅读全文
posted @ 2018-11-25 16:51 西瓜霜 阅读(3573) 评论(0) 推荐(0) 编辑
摘要: document.addEventListener("WeixinJSBridgeReady",function(){ document.getElementById("videoID").play();},false); autoplay不能用的 感谢 https://blog.csdn.net/ 阅读全文
posted @ 2018-11-25 16:16 西瓜霜 阅读(5073) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 34 下一页