TracerLee/tracerlee.github.io

FIS3记录

Opened this issue · 0 comments

路径匹配中 $0 $1 $2 $&的含义

  • $0 == $& 匹配文件的 subpath 相对于模块根目录 (fis-conf.js的父目录)

  • $1,$2 匹配到的分组

    比如

    fis.match('/static/(a)/(a.js)', {
      release: '/static/js/$1/$2'
    });
    
    • $1 == 'a'
    • $2 == 'a.js'