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.
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[EMAIL PROTECTED]/
Dev site: http://dev.catalyst.perl.org/