Skip to content

getFullURL

Namespaces

Functions

getFullURL()

getFullURL(url, baseURL?): string

根据基路径获取完整的 URL

Parameters

ParameterTypeDescription
urlstring当前路径
baseURL?string基路径

Returns

string

Example

ts
getFullURL('logo.png')
// => 'logo.png'

getFullURL.defaultBase = '/website/'

getFullURL('/a.txt')
// => '/website/a.txt'

getFullURL('http://www.xxx.cn/b.jpeg')
// => 'http://www.xxx.cn/b.jpeg'

getFullURL('c.txt', 'http://www.xxx.cn/')
// => 'http://www.xxx.cn/c.txt'

getFullURL('d.exe', '')
// => 'd.exe'