handlebars.java icon indicating copy to clipboard operation
handlebars.java copied to clipboard

failed to read object's fields if field names start with more than one uppercase chars

Open bruceauyeung opened this issue 5 years ago • 0 comments

for example, if i have a Class TestContext.java

class TestContext{
private SEOValue[] SEOValueArray;
}

and the corresponding template:

{{#each  SEOValueArray}}
{{field1}
{{/each}}}

handlerbars fails to render. handlerbars version:4.1.2

bruceauyeung avatar Jul 04 '19 02:07 bruceauyeung