- withLoginInfo 改为接收完整 opts(含 method/headers/params) - 等待 login_window 的 destroy 事件(=登录成功信号) - 登录成功后重试原始请求 - 重试仍401则返回null(避免死循环) - 用户手动关闭登录窗口时也触发重试,401则返回null
21 lines
589 B
Markdown
21 lines
589 B
Markdown
# Html
|
|
|
|
Control Function: Used to insert custom HTML content into a page.
|
|
Type: Ordinary control
|
|
Parent Control: `bricks.JsWidget`
|
|
|
|
## Initialization Parameters
|
|
|
|
- `html` (String)
|
|
The HTML string content to be inserted into the control. This content will be set as the `innerHTML` of the control's DOM element.
|
|
|
|
Example:
|
|
```js
|
|
new bricks.Html({
|
|
html: '<div style="color: red;">This is red text</div>'
|
|
});
|
|
```
|
|
|
|
## Main Events
|
|
|
|
No specific events (inherits general events from the parent class, such as `init`, `render`, etc., but this control does not define any specific events). |