dojo.xhrPost Not Sending any Data - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:44:00Z http://stackoverflow.com/feeds/question/610821 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/610821/dojo-xhrpost-not-sending-any-data 0 dojo.xhrPost Not Sending any Data dragonmantank 2009-03-04T14:29:36Z 2009-03-12T08:46:47Z <p>I'm just getting into Dojo and wanted to try a simple AJAX Post like the <a href="http://dojotoolkit.org/book/dojo-book-0-9/hello-world-tutorial" rel="nofollow">examples</a> on Dojo's website.</p> <p>Here is the HTML/JS:</p> <pre><code>&lt;form method="POST" id="addProjectForm"&gt; &lt;dl&gt; &lt;dt&gt;Project Name:&lt;/dt&gt; &lt;dd&gt;&lt;input dojoType="dijit.form.TextBox" id="projectName"&gt;&lt;/dd&gt; &lt;dt&gt;Project Description:&lt;/dt&gt; &lt;dd&gt;&lt;textarea dojoType="dijit.form.Textarea" id="projectDescription" style="width: 300px; height: 100px"&gt;&lt;/textarea&gt;&lt;/dd&gt; &lt;/dl&gt; &lt;button dojoType="dijit.form.Button" style="float: right"&gt; Save Project &lt;script type="dojo/method" event="onClick"&gt; dojo.xhrPost({ url: '/projects/add/', load: function(data, ioArgs) { alert(data); }, error: function(data, ioArgs) { alert('There was an error'); }, form: 'addProjectForm' }); &lt;/script&gt; &lt;/button&gt; &lt;/form&gt; </code></pre> <p>and on the backend I have the following:</p> <pre><code>class ProjectsController extends Zend_Controller_Action { public function addAction() { $this-&gt;_helper-&gt;layout-&gt;disableLayout(); $this-&gt;_helper-&gt;viewRenderer-&gt;setNoRender(true); $projectName = $this-&gt;_request-&gt;getParam('projectName'); $description = $this-&gt;_request-&gt;getParam('projectDescription'); print_r($_POST); } } </code></pre> <p>When I click the 'Save Project' button, I get a JS alert box with php output of an empty array so none of the information is getting posted. What am I doing wrong?</p> http://stackoverflow.com/questions/610821/dojo-xhrpost-not-sending-any-data/611457#611457 1 Answer by dragonmantank for dojo.xhrPost Not Sending any Data dragonmantank 2009-03-04T16:50:26Z 2009-03-04T16:50:26Z <p>This is because of a stupid mistake. I didn't have a name set on any of the form elements, only IDs.</p> http://stackoverflow.com/questions/610821/dojo-xhrpost-not-sending-any-data/637762#637762 0 Answer by dond for dojo.xhrPost Not Sending any Data dond 2009-03-12T08:46:47Z 2009-03-12T08:46:47Z <p>As I have been playing with POSTing data through Dojo last night, I have one small remark. </p> <p><em>dojo.xhrPost()</em> seem only to work in last version of Dojo Toolkit, when using previous versions you are locked to <em>dojo.io.iframe.send()</em>, if you want to handle the response server gives you after POSTing data. Documentation is bit unclear on this.</p>