我正在存储从vuejs到mysql文本字段(后端为laravel)的对象数组:
// her's the array
reponse:[
{choix1:"", estBon:false},
{choix2:"", estBon:false},
{choix3:"", estBon:false},
],
我将数据加载到数组中,并发出发布请求以存储对象:
// chrome inspector result after loading data
3) [{…}, {…}, {…}, choix1: (...), choix2: (...), choix3: (...), estBon: (...), __ob__: Observer]
choix1: "t"
choix2: "tt"
choix3: "ttt"
estBon: "choix1"
所以在我的发帖请求中,我像这样传递了对象:
reponse: JSON.stringify(this.reponse)
然后将其保存在laravel中,将其保存。
但是我表中的结果是一个空的JSON:
[{"choix1":"","estBon":false},{"choix2":"","estBon":false},{"choix3":"","estBon":false}]