# 注册静态目录
1
beego.SetStaticPath("/static", "static")
前端方式:
beego 里设置渲染模版,在模版里,使用
1
<script src='/static/js/jquery.js'></script>
后端方式:
1
this.Ctx.Output.Body([]byte("<script src='/static/js/jquery.js'></script><script>alert($)</script>"))
目前beego的ORM支持三种数据库:1.Sqlite
2.PostgreSql
3.MySql
如果要使用其中的数据库必须要把对应的drive(go语言对于的数据库引擎)加入到import中:
import (
_ "github.com/go-sql-driver/mysql"
_ "github.com/lib/pq"
_ "github.com/mattn/go-sqlite3"
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)