Expand my Community achievements bar.

AEM - HTL JavaScript Use-API | AEM Community Discussion

Avatar

Administrator

BlogImage.jpg

AEM - HTL JavaScript Use-API by AdobeDocs

Abstract

he HTML Template Langugae (HTL) JavaScript Use-API enables a HTL file to access helper code written in JavaScript. This allows all complex business logic to be encapsulated in the JavaScript code, while the HTL code deals only with direct markup production.
A Simple Example
We define a component, info , located at
/apps/my-example/components/info
It contains two files:
1. info.js : a JavaScript file that defines the use-class.
2. info.html : an HTL file that defines the component info . This code will use the functionality of info.js through the use-API.

/apps/my-example/component/info/info.js

"use strict";
use(function () {
var info = {};
info.title = resource.properties["title"];
info.description = resource.properties["description"];
return info;
});

Read Full Blog

AEM - HTL JavaScript Use-API

Q&A

Please use this thread to ask the related questions.



Kautuk Sahni
Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Reply

Avatar

Level 2

Like in the example, I have created a .js file that lives in the component folder. It works on my localhost:4502, but when I open the page at localhost:4503, nothing from the component shows up. 

Here are the component files:

/[my directory]/components/content/scheduler/scheduler.html

/[my directory]/components/content/scheduler/scheduler.js