You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when trying to access the params from a request, I was attempting to simply use this.params as a parameter for Collection.insert().
// POST /projectsRESTstop.add('projects',{method: 'POST'},function(){returnProjects.insert(this.params);});
This is currently failing since this.params is an associative array, initializing params as an object fixes this particular issue. Any reason to use an associative array?
The text was updated successfully, but these errors were encountered:
when trying to access the params from a request, I was attempting to simply use this.params as a parameter for Collection.insert().
This is currently failing since this.params is an associative array, initializing params as an object fixes this particular issue. Any reason to use an associative array?
The text was updated successfully, but these errors were encountered: