mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-06-16 05:55:33 +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
|
|
}
|