Any smart way of doing a "root" based path referencing in JavaScript, just the way we have ~/ in ASP.NET?
|
|
|||||
|
|
Have your page generate a tag with something like:
Then, have a function in JavaScript that extracts the value such as:
|
|||||||||||||||
|
|
Use base tag:
... from now any link use on this page, no matter in javascript or html, will be relative to the base tag, which is "http://www.example.com/myapp/". |
|||||||||||
|
|
I usually create a variable at the top of the js file and assign it the root path. Then I use that variable when referencing a file.
|
|||
|
|
|
~/ is the application root and not a literal root, it interpets ~/ to mean To do a literal root in JavaScript it's just /, i.e "/root.html". There's no way of getting an application level path like that in JavaScript. You could hack it in the ASPX file and output it in a tag but I would consider the security implications of that. |
|||||||||
|
|
You could also use the asp.net feature
Notice: I don't encode the path to a JSON-string (escape quotes, control characters etc). I don't think this is a big deal (quotes for example aren't allowed unescaped in an URL), but one never knows... |
|||
|
|
Kamarey's answer can be improved to support a dynamic base path:
This will ensure a correct root path regardless of deployment configuration. To be fair, this doesn't answer the original question, but it elimiates most needs for getting the root path from javascript. Simply use relative URL's everywhere, without prefixing with slash. Should you still need to access it from javascript, add an id attribute and use |
||||
|
|
In the PreRender of your .NET base page, add this:
Then in your global JavaScript function, add the following:
Now you can use it like this:
May be a little much for some projects, but works great for full fledged applications. |
||||
|
|
|
For ASP.net MVC Razor pages, Create a base tag like below in the
and in all your relative javascript URLs, make sure to start without a slash(/) otherwise it will refer from the root. For ex. create all your urls like
or
|
||||
|
|
