gpt4 book ai didi

javascript - Vue.js:更新数据库中的子json数据格式

转载 作者:行者123 更新时间:2023-12-03 04:07:54 27 4
gpt4 key购买 nike

我只需要更新 commented_type 列中的评级值。在 Laravel 上,我使用类似 commented_type> rating 的方式。但我不知道vue.js怎么做。

像这样的 JSON 列:

commented_type
{"type": "review", "rating": 5}



updateReview: function () {
var reviewData = {
id:584,
commented_type>rating:'4',//It does not work like that
};
this.$http.patch('/review/584',reviewData).then((response) => {

console.log(response.data);

}, (response) => {
// error callback
console.log('error response review update')
});
},

最佳答案

您的 JSON 目前是字符串形式吗?如果您需要获取对象,请尝试使用 JavaScript 的 JSON.parse()

否则,听起来您只是在询问 property accessors在JS中。试试这个:

commented_type['rating']

关于javascript - Vue.js:更新数据库中的子json数据格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44467556/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com