gpt4 book ai didi

node.js - hapi中使用相对路径访问静态文件

转载 作者:太空宇宙 更新时间:2023-11-03 21:58:40 25 4
gpt4 key购买 nike

我已经浏览过http://hapijs.com/tutorials/serving-files

但这并没有帮助我。

我在项目根目录的静态目录中有一个文件 a.js

我已将 relativePath 配置为粘合配置,作为项目根目录中的 inert 插件。

        plugins: {
'vision': {},
'inert': {
routes: {
files: {
relativeTo: Path.join(__dirname, 'static')
}
}
},
'visionary': {
engines: {
// other plugins

我的服务器路由如下:

{
method: 'GET',
path: '/a.js',
handler: {
file : 'a.js'
}
}

但是当我尝试访问 http://localhost:3000/a.js 时,它会抛出 404 错误。

我错过了什么?

最佳答案

注册inert插件是正确的方法,它允许您提供静态文件。

您有多种选项来提供 a.js 文件,例如使用通配符路由参数以动态方法来提供各种 JS 文件。在 handler 中,您需要设置 JS 目录的路径,inert 将在该文件夹中搜索给定的file:

server.route({  
method: 'GET',
path: '/js/{file*}',
handler: {
directory: {
path: 'public/js'
}
}
})

您还可以指定 JS 文件的静态路由并像这样提供它:

server.route({  
method: 'GET',
path: '/mylocaljavascript.js',
handler: function (request, reply) {
// reply.file() expects the file path as parameter
reply.file('../path/to/my/localjavascript.js')
}
})

希望有帮助!

如果您想了解有关提供静态文件的更多信息:https://futurestud.io/tutorials/hapi-how-to-serve-static-files-images-js-etc

关于node.js - hapi中使用相对路径访问静态文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33462130/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com