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'
]

有关详细信息,请参阅 array

以下示例会引发错误,因为代码缺少 = 和分配的值。

output month int

可通过完成输出声明来修复错误。

output month int = 3

有关详细信息,请参阅输出

后续步骤

有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断