Error parsing yaml file: mapping values are not allowed here

后端 未结 7 1716
清歌不尽
清歌不尽 2021-01-30 15:53

I want to upload an app to Google App Engine:

I get this

Error parsing yaml file:
mapping values are not allowed here
  in \"/home/antonio/Desktop/ATI/cl         


        
7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-30 16:11

    Incorrect:

    people:
      empId: 123
      empName: John
        empDept: IT
    

    Correct:

    people:
      emp:
        id: 123
        name: John
        dept: IT
    

提交回复
热议问题