当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


GO URL.Redacted用法及代码示例


GO语言"net/url"包中"URL.Redacted"类型的用法及代码示例。

用法:

func(u *URL) Redacted() string

Redacted 类似于字符串,但用"xxxxx" 替换任何密码。仅编辑 u.URL 中的密码。

例子:

package main

import (
	"fmt"
	"net/url"
)

func main() {
	u := &url.URL{
		Scheme: "https",
		User:   url.UserPassword("user", "password"),
		Host:   "example.com",
		Path:   "foo/bar",
	}
	fmt.Println(u.Redacted())
	u.User = url.UserPassword("me", "newerPassword")
	fmt.Println(u.Redacted())
}

输出:

https://user:xxxxx@example.com/foo/bar
https://me:xxxxx@example.com/foo/bar

相关用法


注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 URL.Redacted。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。