我正在使用Wikipedia API来获取信息并将其显示在我的Web应用程序中。
我使用下面的URL来访问我的JavaScript中带有AJAX请求的API。 http://en.wikipedia.org/w/api.php?format=json&action=query&prop=revisions&titles=Barack%20Obama&rvprop=content&rvsection=0&rvparse
但是,在返回的内容中,超链接是使用“/ wiki / resource”形式的相对URL指定的。现在,当我在我的网页上显示此内容时,URL就像
http://localhost:8003/wiki/resource
如何将网址重定向到http://en.wikipedia/wiki/resource呢?
提前致谢!
答案 0 :(得分:0)
连接前面的基本URL。例如:
wikiRelativeUrl = getRelativeUrl(); //returns something like /wiki/resource
baseUrl = "http://en.wikipedia";
fullUrl = baseUrl + wikiRelativeUrl;
//use fullUrl