nodeJs-url 模块
Posted motian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodeJs-url 模块相关的知识,希望对你有一定的参考价值。
url 模块
来自《JavaScript 标准参考教程(alpha)》,by 阮一峰
目录
url
模块用于生成和解析URL。该模块使用前,必须加载。
var url = require(‘url‘);
url.resolve(from, to)
url.resolve
方法用于生成URL。它的第一个参数是基准URL,其余参数依次根据基准URL,生成对应的位置。
url.resolve(‘/one/two/three‘, ‘four‘)
// ‘/one/two/four‘
url.resolve(‘http://example.com/‘, ‘/one‘)
// ‘http://example.com/one‘
url.resolve(‘http://example.com/one/‘, ‘two‘)
// ‘http://example.com/one/two‘
url.resolve(‘http://example.com/one‘, ‘/two‘)
// ‘http://example.com/two‘
版权声明 | last modified on 2015-12-17
以上是关于nodeJs-url 模块的主要内容,如果未能解决你的问题,请参考以下文章
CTS测试CtsWindowManagerDeviceTestCases模块的testShowWhenLockedImeActivityAndShowSoftInput测试fail项解决方法(代码片段