Python CGI test:修订历史

跳到导航 跳到搜索

差异选择:选中要对比的版本的单选按钮,按Enter键或下方的按钮。
说明:(当前)=与最后版本之间的差异,(之前)=与上一版本之间的差异,=小编辑。

2022年12月29日 (星期四)

2022年12月28日 (星期三)

  • 当前之前 11:232022年12月28日 (三) 11:23阿奔 讨论 贡献 1,473字节 +37 无编辑摘要 标签可视化编辑
  • 当前之前 11:222022年12月28日 (三) 11:22阿奔 讨论 贡献 1,436字节 +1,436 创建页面,内容为“=== Python CGI get post json === ==== test_cgi ==== #!/usr/bin/python3 # -*- coding: utf-8 -*- print("Content-type: text/html") print("") # import upy import os import time import ucgi import ustr import usys try: form = ucgi.uform()['CGI'] #d_form = form['CGI'] except Exception as e: print(e) sys.exit(1) print(form) #d_form = ustr.udict(form) for key, value in form.items(): if value[:8] == '%BASE64%':…”