github.com/zhangdapeng520/zdpgo_json@v0.1.5/query/common.go (about)

     1  package query
     2  
     3  const (
     4  	Null   Type = iota // json中的null类型
     5  	False              // json中的false类型
     6  	Number             // json中的number类型
     7  	String             // json中的string类型
     8  	True               // json中的true类型
     9  	JSON               // json中的嵌套json类型
    10  )