【发布时间】:2014-12-22 08:18:36
【问题描述】:
我有一个错字形式 (action="update"),应该通过 jquery 发送。
表格如下:
<f:form action="update" name="note" object="{note}">
<textarea class="form-control gettooltip" rows="1" placeholder="Kommentar" title="Kommentar zur Note">{note.kommentar}</textarea>
</f:form>
【问题讨论】:
-
好的,我有一个新问题!现在我可以用 jqury 发送表单了,发送没问题,但是typo3 说我:
Required argument "note" is not set.我的代码如下所示:<f:for each="{notes}" as="note"> <f:form action="update" name="note" object="{note}"> <textarea class="form-control gettooltip" rows="1" placeholder="Kommentar" title="Kommentar zur Note">{note.kommentar}</textarea> </f:form> </f:for> -
好吧,我认为这是个问题,因为我在列表模板中添加了编辑表单??
标签: jquery ajax typo3 extbase typo3-6.2.x