taro alias 的使用

Posted crazycode2

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了taro alias 的使用相关的知识,希望对你有一定的参考价值。

用来配置目录别名,从而方便书写代码引用路径。例如,使用相对路径书写文件引用如下:

import A from ‘../../componnets/A‘
import Utils from ‘../../utils‘

为了避免书写多级相对路径,我们可以如下配置 alias

alias: {
  ‘@components‘: path.resolve(__dirname, ‘..‘, ‘src/components‘),
  ‘@utils‘: path.resolve(__dirname, ‘..‘, ‘src/utils‘)
}

通过上述配置,可以将 src 、src/components 以及 src/utils 目录配置成别名,则代码中的引用改写如下:

import A from ‘@components/A‘
import Utils from ‘@utils‘

.

以上是关于taro alias 的使用的主要内容,如果未能解决你的问题,请参考以下文章

多端统一开发解决方案---Taro

Taro调研

Taro新建项目使用async报错regeneratorRuntime is not defined

跨端开发框架 Taro

Taro编译打包优化实践

Taro编译打包优化实践