如果我有这样的可寻址对象:
uri = Addressable::URI.parse("http://example.com/path/to/resource/")
我将如何取回“ http://example.com/path/to/resource/ ” - 我查看了 uri.methods,但我看不到我将使用哪个来取回完整的 URI。
如果我有这样的可寻址对象:
uri = Addressable::URI.parse("http://example.com/path/to/resource/")
我将如何取回“ http://example.com/path/to/resource/ ” - 我查看了 uri.methods,但我看不到我将使用哪个来取回完整的 URI。
使用to_s
方法:
uri = Addressable::URI.parse("http://example.com/path/to/resource/")
uri.to_s
# => "http://example.com/path/to/resource/"
请参阅URI
基本示例。