关于字段类型 #4716
lengyuxuan
started this conversation in
Ideas
关于字段类型
#4716
Replies: 1 comment
-
|
Changing the API interface has a relatively large impact on the existing users, so we first support the type feature on the UI. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
我惊喜的发现 docker hub 上的 2.1.0-SNAPSHOT 已经支持了字段类型:
但当我尝试更新 sdk 时却发现 api 尚未支持,得到的返回结果未区分类型:

我查看了提交记录 #4542 ,已经是几个月前实现的了,请问计划在哪个版本提供 api 的支持呢?
ps
将来计划的获取接口得到的结果是这样解析好的:
{ "configurations": { "number": 15, "bool": false, "json": {"a":123} } }还是:
{ "configurations": { "number": { "type": 1, "value": "15" }, "bool": { "type": 2, "value": "boolean" }, "json": { "type": 3, "value": "{\"a\":123}" } } }Beta Was this translation helpful? Give feedback.
All reactions