上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 123 下一页
摘要: def clean_data(data): return unicodedata.normalize('NFKC', data).strip().replace("/r", "").replace("/t", "").replace("/n", "") 阅读全文
posted @ 2020-07-15 16:27 公众号python学习开发 阅读(275) 评论(0) 推荐(0) 编辑
摘要: https://guides.emberjs.com/v3.0.0/getting-started/quick-start/ 阅读全文
posted @ 2020-07-10 11:08 公众号python学习开发 阅读(530) 评论(1) 推荐(0) 编辑
摘要: Object.getOwnPropertyDescriptor 一般的我们通过name属性可以获取函数名,像下面 let demo1 ={ say(){ console.log("im say") } } console.log("第一个例子",demo1.say.name) 如果对象的方法使用了取 阅读全文
posted @ 2020-07-09 11:22 公众号python学习开发 阅读(225) 评论(0) 推荐(0) 编辑
摘要: //Ajax $.ajax({ url:"https://www.baidu.com", type:"GET", dataType:"text", contentType:"application/x-www-form-urlencoded;charset=utf-8", data:{ id:"12 阅读全文
posted @ 2020-07-08 23:56 公众号python学习开发 阅读(1133) 评论(0) 推荐(0) 编辑
摘要: docker cp 86e1111ac273:/app portia_in_docker docker+cp+容器的id 然后冒号 容器的绝对路径 本地宿主机路径 https://apppit6dcs05916.pc.xiaoe-tech.com/detail/p_5d9eb71212cbe_Ckz 阅读全文
posted @ 2020-07-07 11:26 公众号python学习开发 阅读(275) 评论(0) 推荐(0) 编辑
摘要: npm i -g npm-check-updates ncu -u npm install 效果 阅读全文
posted @ 2020-07-06 11:01 公众号python学习开发 阅读(394) 评论(0) 推荐(0) 编辑
摘要: https://en.wikibooks.org/wiki/XPath/CSS_Equivalents 阅读全文
posted @ 2020-07-03 15:43 公众号python学习开发 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 。 阅读全文
posted @ 2020-07-03 14:24 公众号python学习开发 阅读(249) 评论(0) 推荐(0) 编辑
摘要: stop_server_key = "server_stop" def lock(redis, key, value, expire): return redis.register_script( ''' if redis.call("get", KEYS[1]) == 0 then redis.c 阅读全文
posted @ 2020-06-30 10:29 公众号python学习开发 阅读(281) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- import pandas as pd from collections import defaultdict import json from pathlib import Path DATA = "6.28" dd = defaultdict(li 阅读全文
posted @ 2020-06-28 20:01 公众号python学习开发 阅读(231) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 123 下一页