programing

yaml의 빈 필드

goodsources 2022. 10. 10. 18:32
반응형

yaml의 빈 필드

.yaml 필드의 값은 비워 둡니다.다른 번역에서는 이 번역에는 없는 것이 필요하기 때문입니다.빈칸으로 두면 값의 경로(...title.3)가 출력됩니다.

title:
    1: String
    2: String2
    3:

사용할 수 있습니다.~또는null.

YAML 매뉴얼을 읽고 Symfony Yaml 포맷도 읽을 수 있습니다.

title:
    1: String
    2: String2
    3: ~

null 값이 아닌 빈 문자열을 원하는 경우 두 개의 작은 따옴표를 사용할 수 있습니다.

title:
    1: String
    2: String2
    3: ''

YAML v1.2 사양에 준거:

10.3.2 태그 해상도

Regular expression         Resolved to tag
null | Null | NULL | ~     tag:yaml.org,2002:null
/* Empty */                tag:yaml.org,2002:null

그래서 퍼팅null또는~또는 값을 생략하면 같은 결과가 됩니다.tag:yaml.org,2002:null:

parent:
  key1:               # empty so "null", # is a comment!
  key2: ~             # also "null"
  key3: null          # "null" explicitly ))
  key4: !!null "null" # for the funs of "secondary tag handle: !!"
  key5: "null"        # sorry, it is a string or !!str if you like ((

언급URL : https://stackoverflow.com/questions/34089496/empty-field-in-yaml

반응형