duanli5662 2015-10-25 15:21
浏览 40
已采纳

具有命名参数的Martini路由无法加载静态文件

I wrote my first Go application with Martini. I have route with named parameter:

m := martini.Classic()

staticOptions := martini.StaticOptions{Prefix: "assets"}
m.Use(martini.Static("assets", staticOptions))

m.Get("/edit/:id", editHandler)
m.Run()

The editHandler renders edit template with bootstrap stylesheet and script which lie in assets/css and assets/js folders accordingly.

<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css">
<script type="text/javascript" src="assets/js/bootstrap.min.js"></script>

But when I open edit page in my browser my static files don't load, because browser makes requests to edit/assets/css/bootstrap.min.css and edit/assets/js/bootstrap.min.js. How can I strip any route prefix?('edit', 'show' and others)

  • 写回答

1条回答 默认 最新

  • duanjiao5082 2015-10-25 15:49
    关注

    The links in your supplied html snippet are relative links. This means that when the browser resolves the URL it appends the given path to the current host and path ie, http://<hostname_and_port>/edit + assets/css/bootstrap.min.css.

    You can use a root path instead of a relative path to ensure that when the browser resolves urls it appends the given path to the root of the host no matter what the full URL path is. This is done by putting a forward slash at the beginning of your path. In the following example I have added a forward slash to the src and href attribute paths.

    <link rel="stylesheet" type="text/css" href="/assets/css/bootstrap.min.css">
    <script type="text/javascript" src="/assets/js/bootstrap.min.js"></script>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 京东qq代付链接怎么提取?
  • ¥20 两个不同Subnet的点对点连接
  • ¥50 怎么判断同步时序逻辑电路和异步时序逻辑电路
  • ¥15 差动电流二次谐波的含量Matlab计算
  • ¥15 Can/caned 总线错误问题,错误显示控制器要发1,结果总线检测到0
  • ¥15 C#如何调用串口数据
  • ¥15 MATLAB与单片机串口通信
  • ¥15 L76k模块的GPS的使用
  • ¥15 请帮我看一看数电项目如何设计
  • ¥23 (标签-bug|关键词-密码错误加密)