3

如果我有这样的可寻址对象:

uri = Addressable::URI.parse("http://example.com/path/to/resource/")

我将如何取回“ http://example.com/path/to/resource/ ” - 我查看了 uri.methods,但我看不到我将使用哪个来取回完整的 URI。

4

1 回答 1

8

使用to_s方法:

uri = Addressable::URI.parse("http://example.com/path/to/resource/")
uri.to_s
# => "http://example.com/path/to/resource/"

请参阅URI基本示例

于 2013-12-21T06:02:53.123 回答