Bicep 错误代码 - BCP124
指定的修饰器不受所修饰语法类型支持时,将发生此错误。
错误说明
The decorator <decorator-name> can only be attached to targets of type <data-type>, but the target has type <data-type>.
解决方案
根据数据类型使用有效的修饰器。
示例
下面的示例引发错误,因为 @maxValue()
针对整数数据类型,而不是字符串数据类型。
@maxValue(3)
param name string
可通过为数据类型提供正确的修饰器来修复错误:
@maxLength(3)
param name string
有关修饰器的列表,请参阅修饰器。
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断。