如果我有这样的可寻址对象:
uri = Addressable::URI.parse("http://example.com/path/to/resource/")
我如何取回“http://example.com/path/to/resource/” - 我已经查看了uri.methods,但我没有看到我将使用哪一个来取回完整的URI。
答案 0 :(得分:6)
使用to_s
方法:
uri = Addressable::URI.parse("http://example.com/path/to/resource/")
uri.to_s
# => "http://example.com/path/to/resource/"