1

我目前正在创建一个包装食谱,同时尝试使用 Rubocop 和 Foodcritic 将自己限制为正确的格式。但是,我经常收到以下错误:

Use strings in preference to symbols to access node attributes

Access node attributes in a consistent manner

这让我想知道,冒号和引号之间有区别吗?

4

2 回答 2

0

是的...冒号用于定义符号,而字符串由引号定义...所以:

:variable1是一个名为 variable1 的符号

:'variable is 1'是一个符号

'variable1' - 是一个字符串

"variable#{1}" - 是一个可以在其中定义变量的字符串。双引号解释字符串,而单引号按原样使用字符串。

'variable1'.to_sym 与 :variable1 相同

于 2016-09-29T01:49:56.027 回答
0

正如 Sid 的回答中提到的,:foo是一个符号"foo"'foo'而是字符串。对于节点属性,我们会自动为您转换内容,因此两种样式都可以使用。Foodcritic 规则可确保您的所有 Chef 代码风格一致。如果您没有理由不这样做,我们建议使用字符串样式,因为带引号的字符串在许多编程语言中很常见,因此更容易被不太流利的 Ruby 读者理解。

于 2016-09-29T03:12:05.517 回答