gpt4 book ai didi

ruby watir-webdriver 在散列中使用变量

转载 作者:数据小太阳 更新时间:2023-10-29 08:32:56 24 4
gpt4 key购买 nike

我正在尝试创建中间有一个变量的散列。我似乎无法将变量仅视为文字变量。变量是数组颜色中的一个元素
比如

text1 = {:style => 'background-color: variable;'}

我认为这会奏效。

text1 = {:style => 'background-color: #{variable};'}

以下是可行的,但它是一种迂回的方法

text2 = ''
text2 << "background-color: " << variable << ";"
text1 = {:style => text2}

最佳答案

如果要使用 #{} 将变量插入到字符串中,则需要使用双引号而不是单引号。

variable = "green"
text1 = {:style => "background-color: #{variable};"} #Notice the double quotes
#=> {:style=>"background-color: green;"}

关于ruby watir-webdriver 在散列中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14780492/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com