gpt4 book ai didi

ruby 对象 to_s 给出了意外的输出

转载 作者:太空宇宙 更新时间:2023-11-03 17:45:49 24 4
gpt4 key购买 nike

查看下面 puts 语句输出的正确方法是什么?对于这样一个简单的问题,我深表歉意……我对 ruby 有点生疏。 github repo

require 'active_support'
require 'active_support/core_ext'
require 'indicators'

my_data = Indicators::Data.new(Securities::Stock.new(:symbol => 'AAPL', :start_date => '2012-08-25', :end_date => '2012-08-30').output)

puts my_data.to_s #expected to see Open,High,Low,Close for AAPL
temp=my_data.calc(:type => :sma, :params => 3)

puts temp.to_s #expected to see an RSI value for each data point from the data above

最佳答案

也许可以查看 awesome_print gem。

它提供了可以在任何地方调用的.ai方法。

一个例子:

my_obj = { a: "b" }
my_obj_as_string = my_obj.ai
puts my_obj_as_string
# ... this will print
# {
# :a => "b"
# }
# except the result is colored.

您可以使用 ap(my_obj) 将所有这些缩短为一个步骤。

还有一种方法可以将对象作为 HTML 返回。这是 my_obj.ai(html: true) 选项。

关于ruby 对象 to_s 给出了意外的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37625043/

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