Code Monkey home page Code Monkey logo

Comments (4)

valenting avatar valenting commented on July 4, 2024

The problem is that "WEB-v2:gizmo" parses as a URL.

I get the same results using the Reference URL parser

Or using JS in the browser:

let base = new URL("https://example.org/lorem/");
// undefined
let u = new URL("WEB-v2:gizmo", base)
// undefined
u.href
// "web-v2:gizmo" 

If you need to use join just prepend ./ to the string you want to use if you know it's a path.
Or use set_path as you indicated you can do.

from rust-url.

Koston-0xDEADBEEF avatar Koston-0xDEADBEEF commented on July 4, 2024

I understand the logic, but is the join() method really serving a purpose by being so dumb?

Anyone who looks at URL "https://example.org/lorem/" and is asked to join "WEB-v2:gizmo" to it can come up with the intended result. But this method can not, even though it's the explicit, stated purpose of a method from a library dedicated to parsing URLs.

from rust-url.

valenting avatar valenting commented on July 4, 2024

I agree that the API design is not great. Ideally this wouldn't be a method on the URL object, but a static name like Url::parse_with_base that makes it clear what the method does.
Absent that, you have the documentation: https://docs.rs/url/latest/url/struct.Url.html#method.join

Parse a string as an URL, with this URL as the base URL.

from rust-url.

Koston-0xDEADBEEF avatar Koston-0xDEADBEEF commented on July 4, 2024

Makes sense. Thanks for explanation!

from rust-url.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.