dart:convert
库中HtmlEscape
类的用法介绍如下。
在 HTML 中转义具有特殊含义的字符的转换器。
转换器在 HTML 源代码中找到重要的字符并将它们替换为相应的 HTML 实体。
HTML中需要转义的字符有:
&
(和号)总是需要转义。<
(小于)和>
(大于)在元素内时。"
(引号)在双引号属性值内时。'
(撇号)在单引号属性值内时。撇号被转义为'
而不是'
因为并非所有浏览器都理解'
。/
(斜杠)建议转义,因为它可能用于终止某些 HTML 方言中的元素。
转义 >
(大于)不是必需的,但如果在 less-than 时也转义了 greater-than,则通常会发现结果更容易阅读。
例子:
const HtmlEscape htmlEscape = HtmlEscape();
String unescaped = 'Text & subject';
String escaped = htmlEscape.convert(unescaped);
print(escaped); // Text & subject
unescaped = '10 > 1 and 1 < 10';
escaped = htmlEscape.convert(unescaped);
print(escaped); // 10 > 1 and 1 < 10
unescaped = "Single-quoted: 'text'";
escaped = htmlEscape.convert(unescaped);
print(escaped); // Single-quoted: 'text'
unescaped = 'Double-quoted: "text"';
escaped = htmlEscape.convert(unescaped);
print(escaped); // Double-quoted: "text"
unescaped = 'Path: /system/';
escaped = htmlEscape.convert(unescaped);
print(escaped); // Path: /system/
相关用法
- Dart HtmlEscapeMode用法及代码示例
- Dart HtmlCollection.last用法及代码示例
- Dart HtmlCollection.elementAt用法及代码示例
- Dart HtmlCollection.length用法及代码示例
- Dart HtmlDocument.registerElement2用法及代码示例
- Dart HtmlCollection.first用法及代码示例
- Dart HttpRequest.postFormData用法及代码示例
- Dart HttpOverrides用法及代码示例
- Dart HttpClient.findProxy用法及代码示例
- Dart HttpClientRequest用法及代码示例
- Dart HttpServer.defaultResponseHeaders用法及代码示例
- Dart HttpClient用法及代码示例
- Dart HttpRequest.request用法及代码示例
- Dart HttpClient.findProxyFromEnvironment用法及代码示例
- Dart HttpClientResponse用法及代码示例
- Dart HttpDate.parse用法及代码示例
- Dart HttpClient.connectionFactory用法及代码示例
- Dart HttpRequest用法及代码示例
- Dart HttpClientRequest.followRedirects用法及代码示例
- Dart HttpHeaders用法及代码示例
- Dart HttpClient.keyLog用法及代码示例
- Dart HttpServer用法及代码示例
- Dart HttpRequest.getString用法及代码示例
- Dart HttpRequest构造函数用法及代码示例
- Dart HttpClientRequest.abort用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 HtmlEscape class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。