Bicep 错误代码 - BCP292
如果你有一个修饰器,而该修饰器的后面缺失原本该有的 param
、output
或 type
声明,则会出现此错误。
错误说明
Expected a parameter, output, or type declaration after the decorator.
示例
下面的示例会引发错误,因为在 @metadata
、@minValue()
、@maxValue()
、@minLength()
、@maxLength()
、@discriminator()
或 @sealed()
修饰器之后没有类型声明。
@minLength()
可通过删除修饰器并添加正确的类型声明来修复错误。
@minLength(3)
param name string
有关详细信息,请参阅修饰器。
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断。