可以支持清除某张图片的功能吗?
qzq1111 opened this issue · comments
那些年踩过的坑 commented
如题
Code Ape commented
type Store interface {
// Set sets the digits for the captcha id.
Set(id string, value string) error
// Get returns stored digits for the captcha id. Clear indicates
// whether the captcha must be deleted from the store.
Get(id string, clear bool) string
//Verify captcha's answer directly
Verify(id, answer string, clear bool) bool
}
`Get(id string, clear bool) string` clear true就是清楚图片的值