beego / samples

An open source project for beego sample applications.
Apache License 2.0
914 stars 1.25k forks source link

请问大神这里为什么要减1呢?感觉这里写的太繁琐了 #36

Open Lcoderfit opened 4 years ago

Lcoderfit commented 4 years ago

https://github.com/beego/samples/blob/1c696ee4905b2b12edf7d7dc451220bc838c1296/shorturl/models/model.go#L40

Lcoderfit commented 4 years ago
for num > 0 {
    runes = append(runes, alpha[num%62])
    num = num / 62
}