Autoría | Ultima modificación | Ver Log |
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-3.5.1.js" type="text/javascript"></script>
<script src="../../jsrender.js" type="text/javascript"></script>
<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.role { font-weight: bold; font-style: italic; background-color: Yellow; }
.synopsis { background-color: white; padding: 15px; }
.director { font-weight: bold; font-style: italic; color: red; }
</style>
</head>
<body>
<a href="../demos.html">JsRender Demos</a><br />
<h3>Using {{: }} or {{> }} to render data values with optional conversion or encoding</h3>
<ul>
<li><em>{{:value}}</em> — does not convert. Used to render values that include html markup.</li>
<li><em>{{loc:value lang="..."}}</em> — Uses custom converter.</li>
<li><em>{{html:value}}</em> — Converts using built-in HTML encoder. (Better security within element content, but slight perf cost).</li>
<li><em>{{>value}}</em> — Alternative syntax for built-in HTML encoder.</li>
<li><em>{{attr:availability}}</em> — Converts using built-in attribute encoder. (Better security within attributes).</li>
<li><em>{{url:value lang="..."}}</em> — Converts using built-in URL encoder.</li>
</ul><br />
<div class="box label">
<b>Note:</b> A common use for converters is to protect against injection attacks from untrusted data.
<br />It is generally best to use <b>{{> }}</b> when rendering data within element content, if the data is not intended to provide markup for insertion in the DOM.
<br />In the context of HTML attributes, use <b>{{attr: }}</b>.</div>
<script id="movieTemplate" type="text/x-jsrender">
<tr title="{{attr:availability}}">
<td>{{loc:title lang='EN'}}</td>
<td>{{loc:title lang='FR'}}</td>
<td class="synopsis">{{:synopsis}}</td>
<td class="synopsis">{{>synopsis}}</td>
</tr>
</script>
<table>
<thead><tr><th>Title (loc:English)</th><th>Title (loc:French)</th><th>No Convert</th><th>HTML Encode</th></tr></thead>
<tbody id="movieList"></tbody>
</table>
<script type="text/javascript">
var movies = [
{
availability: "Available in 'X&Y' Cinemas",
title: "Meet Joe Black",
synopsis: "The <span class='role'>grim reaper</span> (<a href='http://www.netflix.com/RoleDisplay/Brad_Pitt/73919'>Brad Pitt</a>) visits <span class='role'>Bill Parrish</span> (<a href='http://www.netflix.com/RoleDisplay/Anthony_Hopkins/43014'>Anthony Hopkins</a>)..."
},
{
availability: "Available at < 20kms from London",
title: "Eyes Wide Shut",
synopsis: "Director <span class='director'>Stanley Kubrick's</span> final film: <br/><br/><img src='http://cdn-4.nflximg.com/US/boxshots/large/5670434.jpg'/>"
}
];
$.views.converters({
loc: function (value) {
var result = "";
switch(this.tagCtx.props.lang) {
case "EN":
result = value;
break;
case "FR":
switch (value) {
case "Meet Joe Black":
result = "Rencontrez Joe Black";
break;
case "Eyes Wide Shut":
result = "Les Yeux Grand Fermés";
break;
}
break;
}
return result;
}
});
$( "#movieList" ).html(
$( "#movieTemplate" ).render( movies )
);
</script>
</body>
</html>