博客代码欣赏(beego)
```go package blog import ( "github.com/jxufeliujj/blog/models" "strconv" "strings" ) type MainController struct { baseController } //首页, 只显示前N条 func (this *MainController) Index() { var list []*models.Post query := new(model...阅读全文
```go package blog import ( "github.com/jxufeliujj/blog/models" "strconv" "strings" ) type MainController struct { baseController } //首页, 只显示前N条 func (this *MainController) Index() { var list []*models.Post query := new(model...阅读全文
原文[https://blog.weizhe.net/?p=534](https://blog.weizhe.net/?p=534) 有兴趣的同学欢迎来一起玩:[https://github.com/vzever/gomobileapp](https://github.com/vzever/gomobileapp) go1.5beta2已经发布,正式版将在8月份发布.而早在go1.4就已发布了golang/mobile项目用以实现Android应用的开发.当前gomobile的环境部署已...阅读全文
# 如何用Docker定制你自己的Beego环境 ###前言: 学习golang几个月了,一直在论坛和qq群里潜水,一直都想写点什么回报大家积极的知识分享。 前几日在CSDN上看到了一篇文章:[如何将nodeclub构建成Docker镜像](http://www.csdn.net/article/2015-07-21/2825268).正好也对docker有所了解,就来分享一下我平时怎么应用docker来跑我的项目。 ### 一、为什么要用Docker 先引用Beego...阅读全文
# gotpl go语言模板引擎。基于[gorazor](https://github.com/sipin/gorazor)开发。 # 特性 * 简洁优雅 * 模板继承 * 原生go语言 * 模块,组件 # 原生go语句 ``` @if .... { .... } @if .... { .... } else { .... } @for .... { } @{ switch .... { case ....: ...阅读全文
在php开发中,我们常常用到缓存技术,以提高开发、运行效率。那php常用缓存技术有哪些呢?它们是怎么使用的呢?下面小编就为大家分享php开发中的10大缓存技术,希望对php初学者有所帮助。 1、全页面静态化缓存 所谓全页面静态化缓存,就是将页面全部生成html静态页面,用户访问时直接访问的静态页面,而不会去走php服务器解析的流程。此种方式,在CMS系统中比较常见,比如dedecms; 这种缓存,比较常用的实现方式是输出缓存: Ob_start() ******要运行的代码...阅读全文