书栈网 · BookStack 本次搜索耗时 0.020 秒,为您找到 77 个相关结果.
  • Internationalization

    Glossary Implementation Methods Example Application Configuration Message Files Organizing Message Files Message keys and values Sections Regions Referencing and arguments ...
  • 路由

    路由 一个简单的路由 斜线后缀 URL 参数 * 通配符 Websockets 静态文件服务 固定参数 自动路由 反转路由 路由 路由定义在一个单独的 routes 文件中. 路由定义规则是: ( METHOD ) ( URL Pattern ) ( Controller . Action ) 下面演示路由...
  • 部署

    1090 2019-05-02 《Go Revel 中文手册》
    部署 概要 本地编译 增量部署 在服务器上构建 Heroku 交叉编译 部署 概要 几种常见的部署方法如下: 本地编译代码,然后复制到服务器上运行 在服务器上拉取代码,然后编译、运行 使用 Heroku 进行部署使用命令行演示互动部署 - 一般将web服务器作为守护程序运行。常用工具有: Ubuntu Upstart s...
  • Server Engine

    Registration App.conf Server Engines Interface methods Server ContextThe server context is the communication bridge between Revel and the revel.ServerEngine GoDoc Reference Gi...
  • 国际化

    1108 2019-05-02 《Go Revel 中文手册》
    Messages 词汇表 示例程序 消息文件 组织消息文件 消息 key 和 值 段 区域 引用 和 参数 引用 参数 解析客户端语言环境(locale) 检查当前语言环境 解析 Accept-Language HTTP 头信息 解析消息 控制器 模板 配置 Messages Revel使用文本文件提供国际化翻译支持...
  • 日志

    1008 2019-05-02 《Go Revel 中文手册》
    日志 日志 Revel 支持四类日志信息: TRACE - 调试信息 INFO - 一般信息 WARN - 警告信息 ERROR - 错误信息下面是在Revel中使用日志的例子: now := time . Now () revel . TRACE . Printf ( "%s" , now . String ()) 日志记...
  • 过滤器

    过滤器 过滤器链配置 全局配置 Per-Action configuration 实现一个过滤器 保持过滤器链能够依次执行 获取控制器类型 过滤器 过滤器是Revel框架的中间件 – 是组成请求处理管道的独立的功能。他们执行框架的所有功能。 过滤器类型是一个简单的函数: type Filter func ( c * Contro...
  • Static Content

    Config Best Practices GitHub Labels For serving directories of static assets, Revel provides the static built in module,which contains a singleStatic controller. Static.Serve ...
  • 版本

    版本控制 版本控制 nathany上已经给出了Go包版本控制的许多信息。然而, 那时还没有一个包版本管理的社区标准。因此, 只能由开发者确保软件安全与可重复构建。 如果你使用Revel构建应用程序, 开发者应避免由于不兼容造成的问题。你的构建过程不应当使用go get获取Revel的主分支。 处理这种情况最简单的方法是签出Revel和所有依赖包到...
  • Template Engine

    Building a new Template Engine Template Engine Interface Template Interface GoDoc Reference GitHub Labels Revel allows for building and using custom template engines; the pro...