Why am I getting a 422 error code?
问题 I am making a POST request, but unable to get anything besides a 422 response. Vue.js client code: new Vue({ el: '#app', data: { form: { companyName: '', street: '', city: '', state: '', zip: '', contactName: '', phone: '', email: '', numberOfOffices: 0, numberOfEmployees: 0, } }, methods: { register: function() { this.$http.post('/office-depot-register', this.form).then(function (response) { // success callback console.log(response); }, function (response) { // error callback console.log