don't show double quote when content is a string or blank string
Closed this issue · 4 comments
tangyiming commented
yansenlei commented
JsonEditor itself allows string types,
Do you expect to show an empty object? Can be external to ensure that the data is at least an empty object:
<v-jsoneditor v-model="data"/>
data = data || {}
tangyiming commented
@yansenlei 你好,举个例子:
假如有个这个字符串: "aaa"
,现在Editor显示的是 "aaa"
,但是我希望他显示的是aaa
;
假如有个空字符串 ""
,现在Editor显示的是 ""
,但是我想看到Editor里什么也没有。
不知道要如何实现,还是实现不了呢。
yansenlei commented
实现不了,字符串必须包含引号,不用引号类型有 Boolean/Number,这是标准,应该不好改动。
强制改动样式可能与标准的显示上产生冲突。
也可以去 jsoneditor 看看能不能获得支持。
tangyiming commented
@yansenlei 好的 多谢回复