## 基础使用

基本的dataProvider使用

```json
{
    "body": [{
        "type": "container",
        "model": "basicDataProviderDemo",
        "dataProvider": [
            {
                "mode": "ajax",
                "config": {
                    "url": "/api/mock/dateStartTime",
                    "method": "GET"
                },
                "responseRewrite": {
                    "name": "111",
                    "time": "#ES{$output.data.startTime}"
                },
                "debug": true
                
            }
        ],
        "children": [
            {
                "type": "input",
                "name": "name",
                "placeholder": "please input name"
            },
            {
                "type": "input",
                "name": "time"
            }
        ]
    }]
}
```
