摘要: [Python] encode & decode from urllib import parse # url进行编码与解码 url = '你好啊' url_encode = parse.quote(url) print('url编码后:', url_encode) url_decode = par 阅读全文
posted @ 2024-08-30 15:28 X-Wolf 阅读(15) 评论(0) 推荐(0) 编辑
摘要: github: https://github.com/jxhczhl/JsRpc 简介: 通过远程调用(rpc)的方式免去抠代码补环境 原理: 在网站的控制台新建一个WebScoket客户端链接到服务器通信,调用服务器的接口 服务器会发送信息给客户端 客户端接收到要执行的方法执行完js代码后把获得想 阅读全文
posted @ 2024-08-30 11:32 X-Wolf 阅读(81) 评论(0) 推荐(0) 编辑