admin管理员组文章数量:1349704
I have a vite vue3 project. In the ponent I try to get the URL of all images from a folder. It works when I write
const images = import.meta.globEager("/src/resources/projects/images/Project1/*.png")
and in a template
<img v-for="(item, key) in images" :key="key" :src="key" />
but each ponent has a different folder and when I write
const imageFolderUrl = "/src/resources/projects/images/" + this.projectName + "/*.png";
const image = import.meta.globEager (imageFolderUrl);
i get the error import.meta.glob()
can only accept string literals".
How can I load all images url from folder with a dynamic folder name?
I have a vite vue3 project. In the ponent I try to get the URL of all images from a folder. It works when I write
const images = import.meta.globEager("/src/resources/projects/images/Project1/*.png")
and in a template
<img v-for="(item, key) in images" :key="key" :src="key" />
but each ponent has a different folder and when I write
const imageFolderUrl = "/src/resources/projects/images/" + this.projectName + "/*.png";
const image = import.meta.globEager (imageFolderUrl);
i get the error import.meta.glob()
can only accept string literals".
How can I load all images url from folder with a dynamic folder name?
-
2
You could attempt to load all resources for all projects with
/src/resources/projects/images/*/*.png
. – user19015424 Commented May 3, 2022 at 12:37
1 Answer
Reset to default 7I was trying to do the same thing with Sveltekit.
There's info at https://github./vitejs/vite/issues/5478
A quick workaround is to write any possible foldername as one possiblity in a switch/case statement.
let images;
switch (imageFolderUrl) {
case "Project1": images = import.meta.globEager("/src/resources/projects/images/Project1/*.png");
case "Project2": images = import.meta.globEager("/src/resources/projects/images/Project2/*.png");
...
}
It's far from pretty, but it works if all you want is to avoid importing all /**/*.png
and filtering down by path.
本文标签: javascriptimportmetaglob() can only accept string literalsStack Overflow
版权声明:本文标题:javascript - import.meta.glob() can only accept string literals - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743856346a2550923.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论