我无法注册从前端传递给它的两个值。我知道该操作仅需要两个参数,因此我需要将其作为对象或数组传递,但注销值时却一直未定义。
我的动作
echo $obj->conn_id->server_info;die;
我在其中调用并传递值的地方:
toggleMarkImportant: ({commit, state}, {row_id, bool}) => {
console.log('fireball', row_id, bool)
// axios.post('http://localhost:5050/api/important', {row_id, bool}).then(res=>{
// axios.get('http://localhost:5050/api/get-table-data').then(res=>{
// commit('SET_TABLE_ROWS', {tableRows: res.data})
// })
// })
}
如果能传递所有信息,我就能得到ID,因此我知道数据在那里而且是正确的。请帮助!!!