目录

prefer_interpolation_to_compose_strings

使用插值来组合字符串和值。

此规则自 Dart 2.0 起可用。

规则集:推荐flutter

此规则有快速修复可用。

详情

#

推荐使用插值来组合字符串和值。

在组合字符串和值时,使用插值通常比连接更容易编写和阅读。

错误示例

dart
'Hello, ' + person.name + ' from ' + person.city + '.';

正确示例

dart
'Hello, ${person.name} from ${person.city}.'

用法

#

要启用 prefer_interpolation_to_compose_strings 规则,请在您的 analysis_options.yaml 文件中的 linter > rules 下添加 prefer_interpolation_to_compose_strings

analysis_options.yaml
yaml
linter:
  rules:
    - prefer_interpolation_to_compose_strings