Am 29.09.2014 21:13, schrieb Maaaks:
Well, this is how I got all tags that were sent by browser as
tags[]:entry.tags = App.request.form.getAll("tags[]");I believe that the correct and obvious way for it should be
entry.tags = App.request.form.getAll("tags");
But shouldn't the browser/HTML form be the one who is responsible for
naming that field? Does the form field read <input name="tags"> or <input name="tags[]">?