我正在尝试使用tablesorter对购物车商品的价格进行分类。结果升序排序:
9,20€
8,00€
7,23€
6,70€
5,70€
12,00€
11,00€
我的解析器:
ts.addParser({
id: "currency",
is: function (s) {
return /^[£$€?.]/.test(s);
}, format: function (s) {
return $.tablesorter.formatFloat(s.replace(new RegExp(/[£$€]/g), ""));
}, type: "numeric"
});
如何解决此问题?
答案 0 :(得分:1)
解决:
select jsonarr->*->'name' from items;