审查视图

vendor/github.com/ajg/form/form.go 366 字节
tangxvhui authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright 2014 Alvaro J. Genial. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// Package form implements encoding and decoding of application/x-www-form-urlencoded data.
package form

const (
	implicitKey = "_"
	omittedKey  = "-"

	defaultDelimiter = '.'
	defaultEscape    = '\\'
)