ht.ui.router.App(config)

new App(config)

Parameters:
Name Type Attributes Description
config any <optional>

Methods

addToDOM(dom, rect) → {void}

将组件加到页面的 DOM 树中;如果没有任何参数,或者只指定第一个参数并且第一个参数为 window,则组件会填满整个浏览器窗口,
并且浏览器窗口大小变化时也会自动刷新组件

Parameters:
Name Type Attributes Description
dom HTMLElement <optional>

指定组件的父亲 DOM,如果为空,则加到 body 中

rect Object <optional>

组件的范围,格式为 {x: x, y: y, width: width, height: height};如果为空,则填满父亲 DOM

Returns:
void

getContext() → {any}

Returns:
any -

app 环境信息

getQuery() → {string}

url 拼接的页面参数,一般用于存储表单数据

Returns:
string -

url 拼接的页面参数

getRootView() → {ht.ui.View}

Returns:
ht.ui.View -

app 根组件