我正在嘗試將 formgoup 中的值發布到 php 頁面,最終保存在 mysql 數據庫中。當我嘗試 POST 時,我不斷收到錯誤響應:SyntaxError: Unexpected token a in JSON at position 41 at JSON.parse (<anonymous>) at XMLHttpRequest.onLoad (http://localhost:8100/vendor.js:9017:51) at ZoneDelegate.invokeTask (http://localhost:8100/polyfills.js:3505:35) at Object.onInvokeTask (http://localhost:8100/vendor.js:75756:33) at ZoneDelegate.invokeTask (http://localhost:8100/polyfills.js:3504:40) at Zone.runTask (http://localhost:8100/polyfills.js:3273:51) at ZoneTask.invokeTask [as invoke] (http://localhost:8100/polyfills.js:3586:38) at invokeTask (http://localhost:8100/polyfills.js:4727:18) at XMLHttpRequest.globalZoneAwareCallback (http://localhost:8100/polyfills.js:4764:25)我在離子應用程序中使用的代碼是: let body = { fullname: this.slideOneForm.value['fullName'], gender: this.slideOneForm.value['gender'], age: this.slideOneForm.value['age'], mstatus: this.slideOneForm.value['mstatus'], flocation: this.slideOneForm.value['flocation'], telno: this.slideOneForm.value['telno'], email: this.slideOneForm.value['email'], username: this.slideOneForm.value['username'], password: this.slideOneForm.value['password'], enterprise1: this.selected_enterprises[0], enterprise2: this.selected_enterprises[1], enterprise3: this.selected_enterprises[2], farmstock1: this.slideTwoForm.value['farm_stock'][0], };
添加回答
舉報
0/150
提交
取消