代码拉取完成,页面将自动刷新
package modelcache
import (
"fmt"
"gitee.com/pangxianfei/multiapp/config"
"gitee.com/pangxianfei/multiapp/cmd"
)
func init() {
cmd.Add(&ModelCache{})
}
type ModelCache struct {
}
func (s *ModelCache) Command() string {
return "modelcache:make {appname} {name}"
}
func (s *ModelCache) Description() string {
return "Create a AppName Model Cache"
}
func (s *ModelCache) Handler(arg *cmd.Arg) error {
appname, aErr := arg.Get("appname")
if aErr != nil {
return aErr
}
modelCacheName, rErr := arg.Get("name")
if rErr != nil {
return rErr
}
if appname == nil {
cmd.Warning("You need a app name")
return nil
}
if modelCacheName == nil {
cmd.Warning("You need a Model Cache name")
return nil
}
var AppPath string = config.GetString("app.app_path")
var stubsModelCacheNamePath string = fmt.Sprintf("%s/make/stubs/modelcache", config.GetString("app.make_stubs"))
newAppName := string(*appname)
newModelCacheName := string(*modelCacheName)
createModel := cmd.Model{}
Models := createModel.MakeModelFromString(newAppName, newModelCacheName)
// 拼接目标文件路径
filePath := fmt.Sprintf("%s/%s/buffer/%sCache.go", AppPath, Models.AppName, Models.StructName)
// 基于模板创建文件(做好变量替换)
createModel.CreateFileFromStub(filePath, stubsModelCacheNamePath, Models)
return nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。