最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - What is the difference between href and toString when converting an URL interface to string? - Stack Overflow

programmeradmin1浏览0评论

Let's say I use the URL interface to create a new URL. E.g. like that:

new URL('.html?query=6#bla')

Now I need this as a plain string. How do I best convert it?

Note: The examples here are minimal examples. I obviously don't convert a (hardcoded) string to an URL object and back to a string. To give some context, imagine I modify the URL object in between (possibly with user input) and/or pass it to different functions or so. In the end, I have an URL object and want it as a plain string.


I've found the following ways:

  • via href property:

    (new URL('.html?query=6#bla')).href
    // ".html?query=6#bla"
    
  • via toString method:

    (new URL('.html?query=6#bla')).toString()
    // ".html?query=6#bla"
    

As you can see, in my example, it returns exactly the same.


So looking at the doc you notice:

  • href is "a USVString containing the whole URL."
  • toString returns "a USVString containing the whole URL. It is a synonym for URL.href, though it can't be used to modify the value."

Okay, I don't want to modify it. But are there really no differences? Maybe regarding performance, browser support¹ or even code style? I have to decide for one, so which one should I choose?

¹ Actually I can see there are differences in the patibility table for these conversion ways. So I guess there are also some legacy implementations that handle things differently or so. I cannot believe these are true "synonym" and this gab in browser support seems to support that believe.

Let's say I use the URL interface to create a new URL. E.g. like that:

new URL('https://www.example./démonstration.html?query=6#bla')

Now I need this as a plain string. How do I best convert it?

Note: The examples here are minimal examples. I obviously don't convert a (hardcoded) string to an URL object and back to a string. To give some context, imagine I modify the URL object in between (possibly with user input) and/or pass it to different functions or so. In the end, I have an URL object and want it as a plain string.


I've found the following ways:

  • via href property:

    (new URL('https://www.example./démonstration.html?query=6#bla')).href
    // "https://www.example./d%C3%A9monstration.html?query=6#bla"
    
  • via toString method:

    (new URL('https://www.example./démonstration.html?query=6#bla')).toString()
    // "https://www.example./d%C3%A9monstration.html?query=6#bla"
    

As you can see, in my example, it returns exactly the same.


So looking at the doc you notice:

  • href is "a USVString containing the whole URL."
  • toString returns "a USVString containing the whole URL. It is a synonym for URL.href, though it can't be used to modify the value."

Okay, I don't want to modify it. But are there really no differences? Maybe regarding performance, browser support¹ or even code style? I have to decide for one, so which one should I choose?

¹ Actually I can see there are differences in the patibility table for these conversion ways. So I guess there are also some legacy implementations that handle things differently or so. I cannot believe these are true "synonym" and this gab in browser support seems to support that believe.

Share Improve this question edited Jan 26, 2019 at 16:57 rugk asked Jan 26, 2019 at 16:49 rugkrugk 5,5924 gold badges34 silver badges61 bronze badges 3
  • 3 Why don't you have the url as a string const url = 'http://www.example./démonstration.html?query=6#bla' and then use that when creating the url object new URL(url). Then you have both. – Andy Commented Jan 26, 2019 at 16:52
  • 2 @Andy My code was a minimal example. Obviously, I don't convert it from and to this object for fun and not in an one-liner as demonstrated above. Image a bigger subject here where URL objects are used for passing URLs as APIs or modifying them etc. and finally you just want a string URL at some point. (Edit: Now added this note to the question.) – rugk Commented Jan 26, 2019 at 16:53
  • You'd be surprised the obvious things people miss in their code on this site. – Andy Commented Jan 26, 2019 at 16:57
Add a ment  | 

1 Answer 1

Reset to default 12

According to the specification, they are doing exactly the same. The href attribute is marked up as a stringifier, which means that in JavaScript the class gets a toString method with exactly the same behaviour as the attribute.

As you have noticed, browser support is not the same for them. Also one is more to type and transmit than the other. This es down entirely to preference. However, personally I find that an explicit toString call best conveys the message "I have an URL object and want it as a plain string."

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论