如何在yaml文件中声明数组内部的数组

时间:2017-10-10 09:44:51

标签: snakeyaml

例如:rate:

{floor: '1', functionId: BDEB1, 
baseRates: { baseRateAgreementLevel: baseRateAgreementLevel,name: LIBOR GBP 1 Month, value: 0.1}
} 

以上速率是一个数组,而基数是另一个在速率数组内的数组

获取错误"无法创建属性"在snake yaml文件中声明数组里面的数组。

1 个答案:

答案 0 :(得分:0)

我猜你打算写:

rate:
    floor: '1'
    functionId: BDEB1
    baseRates: 
        baseRateAgreementLevel: baseRateAgreementLevel
        name: LIBOR GBP 1 Month
        value: 0.1

这是你想要的吗?看看here以获得json等效表示。