1. orm.Install(x []XX) 保存一組數據時,操做以下圖:spa
2. orm.Install(x *XX) 保存單條數據時,操做以下圖:3d
首先是配置其它的都沒有任務問題。orm
-. 當執行 Install() 時會拋出異常,Handler crashed with error <Ormer> table: `.` not found, make sure it was registered with `RegisterModel()`,說是須要調用 orm.RegisterModel() 註冊這個 model。blog
-. 解決方法: o.Insert(&configutation) 替換成 o.Insert(configutation) 把 & 去掉。it