gpt4 book ai didi

ruby - 在 Ruby 中将 [] 与安全导航运算符一起使用

转载 作者:数据小太阳 更新时间:2023-10-29 06:33:54 25 4
gpt4 key购买 nike

我目前有一段代码如下:

if match = request.path.match(/\A\/(?<slug>(?!admin|assets)\w+)/)
match[:slug]
end

有没有办法使用安全导航运算符(在 2.3.0 中引入)来避免这种 if 条件?

最佳答案

只需使用普通(无糖)形式即可。

request.path.match(/\A\/(?<slug>(?!admin|assets)\w+)/)&.[](:slug)

关于ruby - 在 Ruby 中将 [] 与安全导航运算符一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34794697/

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