使用別名匯入命名成員
有時你可能會遇到成員名稱很長的成員,例如 thisIsWayTooLongOfAName()
。在這種情況下,你可以匯入該成員併為其指定一個較短的名稱以在當前模組中使用:
import {thisIsWayTooLongOfAName as shortName} from 'module'
shortName()
你可以匯入多個長成員名稱,如下所示:
import {thisIsWayTooLongOfAName as shortName, thisIsAnotherLongNameThatShouldNotBeUsed as otherName} from 'module'
shortName()
console.log(otherName)
最後,你可以將匯入別名與正常成員匯入混合:
import {thisIsWayTooLongOfAName as shortName, PI} from 'module'
shortName()
console.log(PI)