Documentation ¶
Index ¶
- Constants
- type Values
- func (f Values) Add(key string, value string)
- func (f Values) Delete(key string)
- func (f Values) Get(key string) string
- func (f Values) Has(key ...string) bool
- func (f Values) IsEmpty(key ...string) bool
- func (f Values) IsInsertPost() bool
- func (f Values) IsSingleUpdatePost() bool
- func (f Values) IsUpdatePost() bool
- func (f Values) PostError() error
- func (f Values) RemoveRemark() Values
- func (f Values) RemoveSysRemark() Values
- func (f Values) ToMap() map[string]string
Constants ¶
const ( PostTypeKey = "__go_admin_post_type" PostResultKey = "__go_admin_post_result" PostIsSingleUpdateKey = "__go_admin_is_single_update" PreviousKey = "__go_admin_previous_" TokenKey = "__go_admin_t_" MethodKey = "__go_admin_method_" NoAnimationKey = "__go_admin_no_animation_" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Values ¶
Values maps a string key to a list of values. It is typically used for query parameters and form values. Unlike in the http.Header map, the keys in a Values map are case-sensitive.
func (Values) Add ¶
Add adds the value to key. It appends to any existing values associated with key.
func (Values) Get ¶
Get gets the first value associated with the given key. If there are no values associated with the key, Get returns the empty string. To access multiple values, use the map directly.
func (Values) IsInsertPost ¶ added in v1.1.5
IsInsertPost check the param if is from an insert post request type or not.
func (Values) IsSingleUpdatePost ¶ added in v1.1.5
IsSingleUpdatePost check the param if from an single update post request type or not.
func (Values) IsUpdatePost ¶ added in v1.1.5
IsUpdatePost check the param if is from an update post request type or not.
func (Values) RemoveRemark ¶ added in v1.1.5
RemoveRemark removes the PostType and IsSingleUpdate flag parameters.
func (Values) RemoveSysRemark ¶ added in v1.2.8
RemoveSysRemark removes all framework post flag parameters.