最佳答案
基本上试图在 yaml 中使用这个 json 来完成一些事情:
{
models:
[
{
model: "a"
type: "x"
#bunch of properties...
},
{
model: "b"
type: "y"
#bunch of properties...
}
]
}
到目前为止,这是我有什么,它不工作,因为我重复我的 model
关键,但什么是一个正确的方式来做,通过保持该 model
关键字?
models:
model:
type: "x"
#bunch of properties...
model:
type: "y"
#bunch of properties...