dojo.xhrPost Not Sending any Data - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T19:44:00Zhttp://stackoverflow.com/feeds/question/610821http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/610821/dojo-xhrpost-not-sending-any-data0dojo.xhrPost Not Sending any Datadragonmantank2009-03-04T14:29:36Z2009-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><form method="POST" id="addProjectForm">
<dl>
<dt>Project Name:</dt>
<dd><input dojoType="dijit.form.TextBox" id="projectName"></dd>
<dt>Project Description:</dt>
<dd><textarea dojoType="dijit.form.Textarea" id="projectDescription" style="width: 300px; height: 100px"></textarea></dd>
</dl>
<button dojoType="dijit.form.Button" style="float: right">
Save Project
<script type="dojo/method" event="onClick">
dojo.xhrPost({
url: '/projects/add/',
load: function(data, ioArgs) {
alert(data);
},
error: function(data, ioArgs) {
alert('There was an error');
},
form: 'addProjectForm'
});
</script>
</button>
</form>
</code></pre>
<p>and on the backend I have the following:</p>
<pre><code>class ProjectsController extends Zend_Controller_Action
{
public function addAction()
{
$this->_helper->layout->disableLayout();
$this->_helper->viewRenderer->setNoRender(true);
$projectName = $this->_request->getParam('projectName');
$description = $this->_request->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#6114571Answer by dragonmantank for dojo.xhrPost Not Sending any Datadragonmantank2009-03-04T16:50:26Z2009-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#6377620Answer by dond for dojo.xhrPost Not Sending any Datadond2009-03-12T08:46:47Z2009-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>