Documentation
¶
Overview ¶
Package syntax 负责处理路由语法
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Segment ¶
type Segment struct {
Value string
Type Type
// 是否为最终结点
//
// 在命名路由项中,如果以 {path} 等结尾,则表示可以匹配任意剩余的字符。
// 此值表示当前节点是否为此种类型。该类型的节点在匹配时,优先级可能会比较低。
Endpoint bool
// 当前节点的参数名称,比如 "{id}/author",
// 则此值为 "id",非字符串节点有用。
Name string
// 保存参数名之后的字符串,比如 "{id}/author" 此值为 "/author",
// 仅对非字符串节点有效果,若 endpoint 为 false,则此值也不空。
Suffix string
// contains filtered or unexported fields
}
Segment 路由项被拆分之后的分段内容
func Split ¶
Split 将字符串解析成字符串数组
以 { 为分界线进行分割。比如
/posts/{id}/email ==> /posts/, {id}/email
/posts/\{{id}/email ==> /posts/{, {id}/email
/posts/{year}/{id}.html ==> /posts/, {year}/, {id}.html
func (*Segment) Similarity ¶
Similarity 与 s1 的相似度,-1 表示完全相同, 其它大于等于零的值,越大,表示相似度越高。
Click to show internal directories.
Click to hide internal directories.