本文整理汇总了Golang中github.com/citycloud/citycloud/cf-deploy-ui/entity.Service.Description方法的典型用法代码示例。如果您正苦于以下问题:Golang Service.Description方法的具体用法?Golang Service.Description怎么用?Golang Service.Description使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/citycloud/citycloud/cf-deploy-ui/entity.Service
的用法示例。
在下文中一共展示了Service.Description方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Post
func (this *TemplatesController) Post() {
action := this.GetString("action")
switch action {
case "":
service := entity.Service{}
service.Name = this.GetString("name")
service.Description = this.GetString("description")
service.Where = this.GetString("where")
id, err := this.GetInt64("id", 0)
if err == nil {
if id == 0 {
service.Save()
if service.Where == utils.Deploy_On_PaaS {
deployOnPaaS := entity.OnPaaS{}
deployOnPaaS.Api = this.GetString("Api")
deployOnPaaS.Sid = service.Id
deployOnPaaS.User = this.GetString("UserName")
deployOnPaaS.Passwd = this.GetString("Passwd")
deployOnPaaS.Org = this.GetString("Org")
deployOnPaaS.Space = this.GetString("Space")
deployOnPaaS.Save()
}
if service.Where == utils.Deploy_On_Vms {
deployOnCustom := entity.OnCustom{}
deployOnCustom.Sid = service.Id
deployOnCustom.Ip = this.GetString("ip")
deployOnCustom.User = this.GetString("VmUserName")
deployOnCustom.Passwd = this.GetString("VmPasswd")
deployOnCustom.Save()
}
} else {
service.Id = id
service.Update()
if service.Where == utils.Deploy_On_PaaS {
paasid, _ := this.GetInt64("paasid", 0)
deployOnPaaS := entity.OnPaaS{}
deployOnPaaS.Id = paasid
deployOnPaaS.Api = this.GetString("Api")
deployOnPaaS.Sid = service.Id
deployOnPaaS.User = this.GetString("UserName")
deployOnPaaS.Passwd = this.GetString("Passwd")
deployOnPaaS.Org = this.GetString("Org")
deployOnPaaS.Space = this.GetString("Space")
deployOnPaaS.Update()
}
if service.Where == utils.Deploy_On_Vms {
vmid, _ := this.GetInt64("vmid", 0)
deployOnCustom := entity.OnCustom{}
deployOnCustom.Id = vmid
deployOnCustom.Sid = service.Id
deployOnCustom.Ip = this.GetString("ip")
deployOnCustom.User = this.GetString("VmUserName")
deployOnCustom.Passwd = this.GetString("VmPasswd")
deployOnCustom.Update()
}
}
}
case "delete":
this.DeleteCustomService()
}
this.Redirect("templates", 301) //this.Get()
}