如果import
的是一个文件夹,而不是一个文件,则会去搜索该文件夹下的index.js
文件,并把它作为import
的对象。
例如,如果./b
是一个文件夹,如果./b
下有文件index.js
,则引入index.js
,如果不存在,则会报如下错误:
UnableToResolveError: Unable to resolve module ../../models
from /Users/huangying/Documents/....../test/a.js
: could not resolve `/Users/huangying/Documents/....../text/b' as a file nor as a folder
网友评论