编辑列引发 `Cannot read 属性 '$sum' of undefined`,Webix DataTable 和 Firebase
Editing column raise `Cannot read property '$sum' of undefined`, Webix DataTable and Firebase
我正在尝试使用 Webix DataTable 在 Firebase 上编辑记录并使用数学运算计算两条记录的总和。
这是我的数据表的一部分:
view:"datatable",
id:"clientTable",
select:true,
multiselect:true,
editable:true,
editaction:"click",
math: true,
footer:true,
columns:[
{ id:"index", header:"#", sort:"int", adjust:"data"},
{ id:"date", header:"Fecha", sort:"date", editor:"date", fillspace:true, adjust:"data", format:webix.Date.dateToStr("%d/%m/%y"), adjust:"data"},
{ id:"title", header:[ "Producto",{content:"textFilter"}], sort:"string", editor:"text", fillspace:true },
{ id:"bill", header: "Fractura", sort:"int", editor:"text", fillspace:true, text:"0"},
{ id:"amount", header: "Importe", sort:"int", editor:"text", fillspace:true, text:"0"},
{ id:"paid", header: "Pagado", sort:"int", editor:"text", fillspace:true, text:"0"},
{ id:"sum", header:"Suma", math:"[$r,amount] - [$r,paid]"}], //, cssFormat: mark_sum , footer:{content:"summColumn"}
rules:{
"title": webix.rules.isNotEmpty,
"bill": webix.rules.isNotEmpty,
"amount": webix.rules.isNotEmpty,
"paid": webix.rules.isNotEmpty,
"sum": webix.rules.isNotEmpty,
"bill": webix.rules.isNumber,
"amount": webix.rules.isNumber,
"paid": webix.rules.isNumber,
"sum": webix.rules.isNumber,
"bill": function(value){ return value > 0 },
"amount": function(value){ return value > 0 },
"paid": function(value){ return value >= 0 },
"sum": function(value){ return value >= 0 }
},
在我尝试编辑在 sum
列中计算的 amount
或 paid
之前,一切都运行良好。在使用 Math
函数进行编辑时,我似乎遇到了竞争条件。
例外情况是:
Uncaught TypeError: Cannot read property '$sum' of undefined
at h.jn (webix.js:1103)
at h.jn (webix.js:1104)
at h.gn (webix.js:1102)
at webix.DataStore.<anonymous> (webix.js:13)
at webix.DataStore.callEvent (webix.js:23)
at webix.DataStore.updateItem (webix.js:524)
at h.updateItem (webix.js:545)
at h.ri (webix.js:790)
at h.<anonymous> (webix.js:788)
at h.si (webix.js:1115)
是否有任何变通方法可以使总和仅在编辑后计算?或者避免在未定义的属性上计算此总和?
我试过为这些列设置默认值,但一点用都没有。
谢谢。
根据@George 的评论,由于 firebase 的变化 $
不能用作 firebase 密钥的前缀,因此 webix 数学在它上面失败。
解决方法是使用 firebase 事务并自己计算。
我正在尝试使用 Webix DataTable 在 Firebase 上编辑记录并使用数学运算计算两条记录的总和。
这是我的数据表的一部分:
view:"datatable",
id:"clientTable",
select:true,
multiselect:true,
editable:true,
editaction:"click",
math: true,
footer:true,
columns:[
{ id:"index", header:"#", sort:"int", adjust:"data"},
{ id:"date", header:"Fecha", sort:"date", editor:"date", fillspace:true, adjust:"data", format:webix.Date.dateToStr("%d/%m/%y"), adjust:"data"},
{ id:"title", header:[ "Producto",{content:"textFilter"}], sort:"string", editor:"text", fillspace:true },
{ id:"bill", header: "Fractura", sort:"int", editor:"text", fillspace:true, text:"0"},
{ id:"amount", header: "Importe", sort:"int", editor:"text", fillspace:true, text:"0"},
{ id:"paid", header: "Pagado", sort:"int", editor:"text", fillspace:true, text:"0"},
{ id:"sum", header:"Suma", math:"[$r,amount] - [$r,paid]"}], //, cssFormat: mark_sum , footer:{content:"summColumn"}
rules:{
"title": webix.rules.isNotEmpty,
"bill": webix.rules.isNotEmpty,
"amount": webix.rules.isNotEmpty,
"paid": webix.rules.isNotEmpty,
"sum": webix.rules.isNotEmpty,
"bill": webix.rules.isNumber,
"amount": webix.rules.isNumber,
"paid": webix.rules.isNumber,
"sum": webix.rules.isNumber,
"bill": function(value){ return value > 0 },
"amount": function(value){ return value > 0 },
"paid": function(value){ return value >= 0 },
"sum": function(value){ return value >= 0 }
},
在我尝试编辑在 sum
列中计算的 amount
或 paid
之前,一切都运行良好。在使用 Math
函数进行编辑时,我似乎遇到了竞争条件。
例外情况是:
Uncaught TypeError: Cannot read property '$sum' of undefined
at h.jn (webix.js:1103)
at h.jn (webix.js:1104)
at h.gn (webix.js:1102)
at webix.DataStore.<anonymous> (webix.js:13)
at webix.DataStore.callEvent (webix.js:23)
at webix.DataStore.updateItem (webix.js:524)
at h.updateItem (webix.js:545)
at h.ri (webix.js:790)
at h.<anonymous> (webix.js:788)
at h.si (webix.js:1115)
是否有任何变通方法可以使总和仅在编辑后计算?或者避免在未定义的属性上计算此总和?
我试过为这些列设置默认值,但一点用都没有。
谢谢。
根据@George 的评论,由于 firebase 的变化 $
不能用作 firebase 密钥的前缀,因此 webix 数学在它上面失败。
解决方法是使用 firebase 事务并自己计算。