Bicep 错误代码 - BCP018
缺少字符(如方括号)时,会发生此错误。
错误说明
Expected the <character> character at this location.
解决方案
添加缺少的字符。
示例
以下示例会引发错误,因为代码缺少 }。
output tennisBall object = {
type: 'tennis'
color: 'yellow'
可以通过添加缺少的 } 来修复此错误。
output tennisBall object = {
type: 'tennis'
color: 'yellow'
}
以下示例会引发错误,因为代码缺少 ]。
output colors array = [
'red'
'blue'
'white'
可以通过添加缺少的 ] 来修复此错误。
output colors array = [
'red'
'blue'
'white'
]
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断。