[Catalyst] need JSON converter which supports unquoted strings
Adeola Awoyemi
adeola at digitalcraftsmen.net
Mon Nov 19 14:37:07 GMT 2007
Moritz Onken wrote:
> Hi,
>
> sorry, a bit off topic, but I'm looking for a perl-object-to-JSON
> converter which supports unquoted strings.
> Modules like JSON::Any quote everything except true and false. But I
> need to pass unquoted strings to let JavaScript run some functions.
>
> Any suggestions?
>
If the quoted string is a function can't you just eval it and stuff it
in a var:
var myFunc = eval( JSON.someFunction );
var result = myFunc( 'args' );
I haven't tried this but this _should_ work.
Adeola.
More information about the Catalyst
mailing list