## What is expected?
<!-- 期望的结果是什么 -->
根据传入的 model 值,在表单序列化 json 的时候,保留 model 原有的字段,进行部分字段的更改
## What is actually happening?
<!-- 实际的结果是什么 -->
表单序列化出的 json 不会保留 model 原有的 字段属性
## Environment
<!-- 环境 -->
<pre><code>
ng-alain version: X.Y.Z
Angular version: X.Y.Z
Browser:
- [ ] Chrome (desktop) version XX
- [ ] Firefox version XX
- [ ] Safari (desktop) version XX
- [ ] IE version XX
</code></pre>
Bug Report or Feature Request (mark with an
x
)Reproduction link
Steps to reproduce
从服务器获取到的 json 字符串可能是很长的,可能很多属性都没有在Schema 中,通过 model 将值绑定到 Schema 后,在通过编辑表单得到的结果不会包含那些没有在Schema中定义的属性
//Schema 中定义的属性 "username": { "type": "string", "title": " 用户名" }, "email": { "type": "string", "title": "邮箱" },
//最后通过表单获取到的 json {"username":"xxx","email":"xxx"}