- withLoginInfo 改为接收完整 opts(含 method/headers/params) - 等待 login_window 的 destroy 事件(=登录成功信号) - 登录成功后重试原始请求 - 重试仍401则返回null(避免死循环) - 用户手动关闭登录窗口时也触发重试,401则返回null
89 lines
1.4 KiB
XML
89 lines
1.4 KiB
XML
{
|
|
"widgettype":"VBox",
|
|
"options":{
|
|
"width":"100%",
|
|
"height":"100%"
|
|
},
|
|
"subwidgets":[
|
|
{
|
|
"widgettype":"HBox",
|
|
"options":{
|
|
"height":"40px"
|
|
},
|
|
"subwidgets":[
|
|
{
|
|
"id":"replace",
|
|
"widgettype":"Button",
|
|
"options":{
|
|
"width":"80px",
|
|
"i18n":true,
|
|
"label":"replace mode"
|
|
}
|
|
},
|
|
{
|
|
"id":"insert",
|
|
"widgettype":"Button",
|
|
"options":{
|
|
"width":"80px",
|
|
"i18n":true,
|
|
"label":"insert mode"
|
|
}
|
|
},
|
|
{
|
|
"id":"append",
|
|
"widgettype":"Button",
|
|
"options":{
|
|
"width":"80px",
|
|
"i18n":true,
|
|
"label":"append mode"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"id":"main",
|
|
"widgettype":"Filler"
|
|
}
|
|
],
|
|
"binds":[
|
|
{
|
|
"wid":"replace",
|
|
"event":"click",
|
|
"actiontype":"urlwidget",
|
|
"target":"main",
|
|
"options":{
|
|
"url":"{{entire_url('replace_text.ui')}}",
|
|
"params":{
|
|
"text":"Insert before"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"wid":"insert",
|
|
"event":"click",
|
|
"actiontype":"urlwidget",
|
|
"target":"main",
|
|
"options":{
|
|
"url":"{{entire_url('insert_text.ui')}}",
|
|
"params":{
|
|
"text":"Insert before"
|
|
}
|
|
},
|
|
"mode":"insert"
|
|
},
|
|
{
|
|
"wid":"append",
|
|
"event":"click",
|
|
"actiontype":"urlwidget",
|
|
"target":"main",
|
|
"options":{
|
|
"url":"{{entire_url('subtext.ui')}}",
|
|
"params":{
|
|
"text":"Append After"
|
|
}
|
|
},
|
|
"mode":"append"
|
|
}
|
|
]
|
|
}
|