英文:
SvelteKit: $api build-in module
问题
我看到一个使用 $api 模块的代码,但在查看文档后发现文档中没有提到这个模块。所以这个模块真的存在吗,还是可能是某种自定义模块?
我看到代码的地方:https://stackoverflow.com/questions/71797472/how-to-use-uuid-in-sveltekit-route
英文:
I've seen a code using $api module, but after looking into the docs I found no mention about this module there. So does this module realy exist or could it be some kind of custom module?
There is where I saw the code: https://stackoverflow.com/questions/71797472/how-to-use-uuid-in-sveltekit-route
答案1
得分: 2
这只是对某个目录的别名,而不是内置模块。就像$lib
引用特定目录一样,您可以添加其他类似的别名。
SvelteKit有自己的配置,用于添加额外的别名。
英文:
It is just an alias to some directory, not a built-in module. Just like $lib
references a specific directory one can add other such aliases.
SvelteKit has its own configuration for adding additional aliases.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论