Hi @sunng87 !
I use object iteration in sqlpage, and I noticed a discrepancy between handlebars.js and handlebars-rust.
{{#each this}}
{{@index}}
{{@key}}
{{this}}
{{/each}}
parameters:
{
"firstname": "Yehuda",
"lastname": "Katz",
}
expected result
0
firstname
Yehuda
1
lastname
Katz
actual result
firstname
Yehuda
lastname
Katz
try online
Hi @sunng87 !
I use object iteration in sqlpage, and I noticed a discrepancy between handlebars.js and handlebars-rust.
parameters:
{ "firstname": "Yehuda", "lastname": "Katz", }expected result
actual result
try online