http://qs1969.pair.com?node_id=415979


in reply to Trouble building hashes from value lists inside a TT2 template

Dear fellows
I'm posting this here hopping this can help other monks too. Guess I was needing a good sleep night.

As soon as I awake this morning, I devised the solution. Its just a matter of making less de-references against the "item" variable, like this:

[% USE pessoa_fisica = Class('reciclar::cdbi::pessoa_fisica'); FOREACH item = [ "id", "primeiro_nome", "sobrenome", "display_name" +, "cep", "nome_logradouro", "numero", "cidade", "estado", "ddd", "tel +efone" ]; IF $item.defined(); THEN; # # Here was my problem. # I couldn't see that I needed the same construct in # both sides of the assignment operation, because the # de-reference operation have different behaviors # when used inside a hash lookup and alone, in kind # of "scalar context". # params.$item = $item; END; END; IF params.keys(); THEN; list_pessoa_fisica = pessoa_fisica.search_where( params, { logic => "and" } ); ELSE; list_pessoa_fisica = pessoa_fisica.retrieve_all(); END; %]

If you pay attention, there is two ways of using the $item construct. First, in "scalar context" (kind of), the result is the transformation of a string in a variable name (and the consequent use of its value in place of the string representing the variable's name). Second, in "hash context" (sorry about the poetic license) when you need to use a variable to name a hash key, in a construct like $hash{$key}, and the interpolation uses the variable name as the hash key (using the same construct used to get a variable's value instead of his name in "scalar context".

I became confuse with those two applications of the same syntatic construct and the mess was done. :-)