remove space after int()& add sort for commentsRouter file

This commit is contained in:
空见 2015-06-08 17:25:46 +08:00
parent 499ee09d4b
commit e1d7bc8826
1 changed files with 9 additions and 2 deletions

View File

@ -24,6 +24,7 @@ import (
"io/ioutil"
"os"
"path"
"sort"
"strings"
"github.com/astaxie/beego/utils"
@ -36,7 +37,7 @@ import (
)
func init() {
{{.globalinfo}}
{{.globalinfo}}
}
`
@ -129,7 +130,13 @@ func genRouterCode() {
os.Mkdir(path.Join(workPath, "routers"), 0755)
Info("generate router from comments")
var globalinfo string
for k, cList := range genInfoList {
sortKey := make([]string, 0)
for k, _ := range genInfoList {
sortKey = append(sortKey, k)
}
sort.Strings(sortKey)
for _, k := range sortKey {
cList := genInfoList[k]
for _, c := range cList {
allmethod := "nil"
if len(c.AllowHTTPMethods) > 0 {