• nodejs中的路径和url操作


    const path = require('path')  //路径模块
    const url = require('url')    //url模块
    console.log(__dirname)      // __dirname获取当前文件绝对路径(不包含文件名)
    console.log(__filename)      // __filename获取当前文件绝对路径(包含文件名)
    console.log(path.join('/feedback/','/view/'))   //连接多个路径字符串为一个规范的路径
    console.log(path.join(__dirname,  '/feedback/','/view/'))   //连接多个路径字符串为一个规范的路径
    console.log(path.resolve(__dirname, '/feedback/','/view/'));    //解析多个路径字符串为一个绝对路径
    console.log(path.parse(__filename))     //解析路径字符串为一个路径信息对象
    console.log(path.basename(__filename)); //获取文件名
    console.log(path.extname(__filename));  //获取文件扩展名
    console.log(path.dirname(__filename));  //获取文件路径
    
    let obj = url.parse('http://www.baidu.com?name=zs&message=aicihuotuican', true) //解析url
    console.log(obj)
    console.log(obj.query)

  • 相关阅读:
    jvM垃圾回收
    Java快速失败和安全失败
    方法覆盖和方法重载
    leetcode-Reverse Words in a String
    自己玩玩
    leetcode-Reverse Vowels of a String
    leetcode-Reverse String
    leetcode-Multiply Strings
    java多线程-cas及atomic
    @media响应式布局
  • 原文地址:https://www.cnblogs.com/chuanzi/p/10515361.html
Copyright © 2020-2023  润新知