st…" />
返回介绍

WWW.EscapeURL 转义网址

发布于 2019-12-18 15:38:47 字数 1754 浏览 1485 评论 0 收藏 0

JavaScript => static function EscapeURL="../strong_s_/strong_/string_strong_e_/strong_/Encoding_System.Text.Encoding.UTF8": string;
C# => static string EscapeURL="../string_strong_s_/strong_Encoding_strong_e_/strong_System.Text.Encoding.UTF8";

Parameters 参数

s A string with characters to be escaped.
要编码的字符串
e The text encoding to use.
使用的编码字符集。

Description 描述

Escapes characters in a string to ensure they are URL-friendly.

转义字符串中的字符。

Certain text characters have special meanings when present in URLs. If you need to include those characters in URL parameters then you must represent them with escape sequences. It is recommended that you use this function on any text supplied by a user before passing the text as a URL parameter. This will ensure that a malicious user can't manipulate the contents of the URL to attack the webserver.

在URL中有些字符串有特殊的意思。如果你需要在URL包含这些参数字符,必须用转义符表示它们。在由用户提供的任何文本作为URL参数传递文本之前,建议你使用这个函数。这将确保恶意用户不能操作URL的内容来攻击网络服务器。

JavaScript:

function Start () {
	// Escaped name is "Fish+%26+Chips'.
	var escName = WWW.EscapeURL('Fish & Chips');
}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Start() {
        string escName = WWW.EscapeURL("Fish & Chips");
    }
}

See Also: UnEscapeURL.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文