[ZF-10089] Zend_Log
[zend.git] / documentation / manual / en / module_specs / Zend_View-Helpers-Json.xml
blobaafbc1839d6c94313fc94623b0a36c0508fba28e
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Reviewed: no -->
3 <sect3 id="zend.view.helpers.initial.json">
4     <title>JSON Helper</title>
6     <para>
7         When creating views that return <acronym>JSON</acronym>, it's important to also set the
8         appropriate response header. The <acronym>JSON</acronym> view helper does exactly that. In
9         addition, by default, it disables layouts (if currently enabled), as
10         layouts generally aren't used with <acronym>JSON</acronym> responses.
11     </para>
13     <para>
14         The <acronym>JSON</acronym> helper sets the following header:
15     </para>
17     <programlisting language="text"><![CDATA[
18 Content-Type: application/json
19 ]]></programlisting>
21     <para>
22         Most <acronym>AJAX</acronym> libraries look for this header when parsing responses to
23         determine how to handle the content.
24     </para>
26     <para>
27         Usage of the <acronym>JSON</acronym> helper is very straightforward:
28     </para>
30     <programlisting language="php"><![CDATA[
31 <?php echo $this->json($this->data) ?>
32 ]]></programlisting>
34     <note>
35         <title>Keeping layouts and enabling encoding using Zend_Json_Expr</title>
37         <para>
38             Each method in the <acronym>JSON</acronym> helper accepts a second, optional argument.
39             This second argument can be a boolean flag to enable or disable
40             layouts, or an array of options that will be passed to
41             <methodname>Zend_Json::encode()</methodname> and used internally to encode data.
42         </para>
44         <para>
45             To keep layouts, the second parameter needs to be boolean
46             <constant>TRUE</constant>. When the second parameter is an array, keeping
47             layouts can be achieved by including a <property>keepLayouts</property> key
48             with a value of a boolean <constant>TRUE</constant>.
49         </para>
51         <programlisting language="php"><![CDATA[
52 // Boolean true as second argument enables layouts:
53 echo $this->json($this->data, true);
55 // Or boolean true as "keepLayouts" key:
56 echo $this->json($this->data, array('keepLayouts' => true));
57 ]]></programlisting>
59         <para>
60             <classname>Zend_Json::encode</classname> allows the encoding of native
61             <acronym>JSON</acronym> expressions using <classname>Zend_Json_Expr</classname> objects.
62             This option is disabled by default. To enable this option, pass a boolean
63             <constant>TRUE</constant> to the <property>enableJsonExprFinder</property> key of
64             the options array:
65         </para>
67         <programlisting language="php"><![CDATA[
68 <?php echo $this->json($this->data, array(
69     'enableJsonExprFinder' => true,
70     'keepLayouts'          => true,
71 )) ?>
72 ]]></programlisting>
73     </note>
74 </sect3>
75 <!--
76 vim:se ts=4 sw=4 et:
77 -->