2020年9月17日
摘要: 微信小程序前端传数据给后端 现在已经连接到php文件了 但是php操纵的数据库和网页没有反应 先粘一下代码: wxml: <!--pages/sql/sql.wxml--> <form bindsubmit="formSubmit" bindreset="formReset"> <view clas 阅读全文
posted @ 2020-09-17 22:51 My_serendipity 阅读(3938) 评论(0) 推荐(0) 编辑
摘要: 微信小程序点击改变页面颜色 用了colorui 组件库 wxml <view class="page" style="background-color: {{backgroundColor}}"> <view class="cu-bar bg-white solid-bottom"> <view c 阅读全文
posted @ 2020-09-17 21:32 My_serendipity 阅读(3995) 评论(0) 推荐(0) 编辑
摘要: 2020第十三届全国大学生信息安全创新实践大赛 z3 http://ethereal.prohitime.top/demo/ 其实根据题目名字的提示(直接百度这道题的题目,会发现z3是一种解方程的工具) // local variable allocation has failed, the out 阅读全文
posted @ 2020-09-17 14:48 My_serendipity 阅读(590) 评论(0) 推荐(0) 编辑
摘要: python文件进行exe打包 安装pyinstaller 准备一个图片,作为exe的图标:b.ico 注意图片格式是ico的,大小为32*32 把00.py和b.ico放到一个目录里面 把cmd的当前目录切换到那个目录 然后执行命令行:pyinstaller -F -i b.ico 00.py 目 阅读全文
posted @ 2020-09-17 14:08 My_serendipity 阅读(118) 评论(0) 推荐(0) 编辑
摘要: selenium自动登录12306 import requests from hashlib import md5 class Chaojiying_Client(object): def __init__(self, username, password, soft_id): self.usern 阅读全文
posted @ 2020-09-17 13:41 My_serendipity 阅读(170) 评论(0) 推荐(0) 编辑