設(shè)計Blog的后臺的數(shù)據(jù)庫
在 models中添加 blog.go
,并添加博客中需要的各種字段
type BlogModel struct {
Id string `bson:"_id"`
Title string `bson:"title"`
Summary string `bson:"summary"`
Original string `bson:"original"` //原始的markdown格式文本
Content string `bson:"content"` //渲染之后的html文本
Date time.Time `bson:"date"`
Tags []TagModel `bson:"tags"`
}
type TagModel struct {
Id string `bson:"_id"`
Name string `bson:"name"`
}
使用MongoDB的Go
驅(qū)動mgo
,封裝相關(guān)的方法
單獨創(chuàng)建一個文件夾 db
,并添加 mongodb.go
,常用的CRUD的封裝,核心代碼
- 獲取
Session
var globalS *mgo.Session
func init() {
dialInfo := &mgo.DialInfo{
Addrs: []string{host},
Timeout: timeout,
Source: authdb,
Username: user,
Password: pass,
PoolLimit: poollimit,
}
s, err := mgo.DialWithInfo(dialInfo)
if err != nil {
log.Fatal("create session error", err)
}
globalS = s
}
- 連接,CURD封裝
具體的封裝的代碼請參考 mgo CRUD封裝
func connect(db, collection string) (*mgo.Session, *mgo.Collection) {
ms := globalS.Copy()
c := ms.DB(db).C(collection)
return ms, c
}
func Insert(db, collection string, docs ...interface{}) error {
ms, c := connect(db, collection)
defer ms.Close()
return c.Insert(docs...)
}
......
前后臺交互
前端使用 ajax
POST數(shù)據(jù)到后臺山橄,beego
可以提供了一些方法獲取request中的數(shù)據(jù) 請求而數(shù)據(jù)處理
請自行查看铝穷,核心代碼
獲取原始markdown數(shù)據(jù)方法 var origin = simplemde.value();
,獲取渲染后的html格式的內(nèi)容方法 var content = simplemde.markdown(origin);
- 前端
$('#submit').click(function(){
var title = $("#blog-title").val();
var origin = simplemde.value();
var content = simplemde.markdown(origin);
if(title.length == 0){
$('#alert').show();
$('#alert').text("請輸入標題信息");
setTimeout(function(){
$("#alert").hide();
},2000)
}
if(origin.length == 0){
$('#alert').show();
$('#alert').text("請輸入具體的博客內(nèi)容");
setTimeout(function(){
$("#alert").hide();
},2000)
}
$.ajax({
url:'/editor',
method:'POST',
data:{title:title,origin:origin,content:content},
success:function(data){
alert(data)
}
})
})
- 后端
使用 GetString()
方法獲取Request中的數(shù)據(jù)
func (this *EditorController) Post() {
title := this.GetString("title")
origin := this.GetString("origin")
content := this.GetString("content")
fmt.Println("post data", title, origin, content)
this.ServeJSON()
}
提交內(nèi)容到數(shù)據(jù)庫
model 核心代碼
const (
database = "Blog"
collection = "BlogModel"
)
func (b *BlogModel) PostBlog(blog *BlogModel) error {
return db.Insert(database, collection, blog)
}
controller 核心代碼
blog := &models.BlogModel{
Id: bson.NewObjectId().Hex(),
Title: title,
Original: origin,
Content: content,
Date: time.Now(),
}
blog.PostBlog(blog)
測試效果圖