HTML Template Instantiationͷྫ
• ςϯϓϨʔτ
{{name}}
h1>Email: {{email}}
• template create callbackؔ
document.defineTemplateType('my-template-type', {
processCallback: function (instance, parts, state) {
for (const part of parts)
part.value = state[part.expression];
}
});
• ςϯϓϨʔτͷ༻ྫ
rniwa = {name: "R. Niwa", email: "
[email protected]"};
document.body.appendChild(contactTemplate.createInstance(rniwa));
• ੜ͞ΕΔHTML
R. Niwa
Email:
[email protected]
12