[Answer]-Backbone.js appending [] to key name on fetch

1👍

Set the traditional option to true when performing the fetch.

var fetchOptions = {data: data, reset: false, remove:false, success:success_func, error:success_func, traditional:true};
this.fetch(fetchOptions);

Leave a comment