|
NAMEDancer::Serializer::JSON - serializer for handling JSON dataVERSIONversion 1.3513SYNOPSISDESCRIPTIONThis class is an interface between Dancer's serializer engine abstraction layer and the JSON module.In order to use this engine, use the template setting: serializer: JSON This can be done in your config.yml file or directly in your app code with the set keyword. This serializer will also be used when the serializer is set to mutable and the correct Accept headers are supplied. The JSON module will pass configuration variables straight through. Some of these can be useful when debugging/developing your app: pretty and canonical, and others useful with ORMs like DBIx::Class: allow_blessed and convert_blessed. Please consult the JSON documentation for more information and a full list of configuration settings. You can add extra settings to the engines configuration to turn these on. For example: engines: JSON: allow_blessed: '1' canonical: '1' convert_blessed: '1' METHODSserializeSerialize a data structure to a JSON structure.deserializeDeserialize a JSON structure to a data structurecontent_typeReturn 'application/json'AUTHORDancer Core DevelopersCOPYRIGHT AND LICENSEThis software is copyright (c) 2010 by Alexis Sukrieh.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |