Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list

HTL Syntax Error

Avatar

Level 4

Actually, I am trying to use the below syntax

<span data-sly-use.params="${'tagname.js' @value=item.productFilterTag}" class="package-uses"
                                        data-uses="${params.title}">${params.title}</span>

But getting this error

"Cannot get DefaultSlingScript: Identifier tagname.js cannot be correctly instantiated by the Use API"

 

And the tagname.js code is given below

use(function () {
    // you can reference the parameters via the this keyword.
    var resourceResolver = resource.getResourceResolver();
    var tagManager = resourceResolver.adaptTo(Packages.com.day.cq.tagging.TagManager);
    var tag = tagManager.resolve(this.value);
    var name = tag.name;
    var title = tag.title;
	var pageLocale = currentPage.getLanguage();
    var localizedTitle = tag.getTitle(pageLocale);


    return {
        title: title,
        name:name,
        locale:pageLocale,
        tag_title:localizedTitle
    };
});

 

3 Replies

Avatar

Level 4

Okay @arunpatidar 

Let me try but can you please explain to me what's the js code issue.

Avatar

Level 2

@Ameen_Dev Check the error logs you can find out the exact issue. Might be the issue while resolving the tagid/tagpath "item.productFilterTag"