Closed WittF closed 3 months ago
有一个问题 原来的plus保存了吗
有一个问题 原来的plus保存了吗
没删PushPlus,留着呢,就是把PlusUtil.py改成PushPlusUtil.py了,调用的参数那些也改成全名了
from util import PushPlusUtil
from util import ServerChanUtil
pushplusToken = configDB.get("pushplusToken")
if pushplusToken is not None and pushplusToken != "":
PushPlusUtil.send_message(pushplusToken, "抢票成功", "前往订单中心付款吧")
serverchanToken = configDB.get("serverchanToken")
if serverchanToken is not None and serverchanToken != "":
ServerChanUtil.send_message(serverchanToken, "抢票成功", "前往订单中心付款吧")
with gr.Row():
serverchan_ui = gr.Textbox(
value=configDB.get("serverchanToken") if configDB.get("serverchanToken") is not None else "",
label="Server酱的Token",
interactive=True,
info="[https://sct.ftqq.com/](https://sct.ftqq.com/)",
)
pushplus_ui = gr.Textbox(
value=configDB.get("pushplusToken") if configDB.get("pushplusToken") is not None else "",
label="pushplus的Token",
interactive=True,
info="[https://www.pushplus.plus/](https://www.pushplus.plus/)",
)
def inner_input_serverchan(x):
return configDB.insert("serverchanToken", x)
def inner_input_pushplus(x):
return configDB.insert("pushplusToken", x)
serverchan_ui.change(fn=inner_input_serverchan, inputs=serverchan_ui)
pushplus_ui.change(fn=inner_input_pushplus, inputs=pushplus_ui)
那没问题,感谢pr
概述
实现/解决/优化的内容:
事务
以下内容可在起草PR后、合并PR前逐步完成
功能
兼容性
风险
可能导致或已知的问题: