## **全局接口說明**
| **方法** | **說明** | **參數** |
| --- | --- | --- |
| $ref| 獲取組件實例對象 | String |
| getValues() | 獲取表單全部數據| 空 |
| getRecordUpdater() | 獲取Web引擎修改表單數據| 空 |
| formRef()| 獲取表單數據 | {} |
| tableRef()| 獲取表格數據 | 唯一名稱 |
示例說明
```
//獲取VForm內Table組件對象
let sohelp = this.tableRef(‘sohelp85548’);
//獲取引擎數據
let record = sohelp.getRecordUpdater();
//獲取全部數據
let formData = this.formRef();
```