mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-09-24 03:33:39 +00:00
12 lines
224 B
Go
12 lines
224 B
Go
package utils
|
|
|
|
import "github.com/labstack/echo/v4"
|
|
|
|
func DefaultPostForm(ctx echo.Context, key, defaultValue string) string {
|
|
value := ctx.Request().Form.Get(key)
|
|
if value == "" {
|
|
return defaultValue
|
|
}
|
|
return value
|
|
}
|