$rd=M('cart')->field("sum(`shopPrice`) as `s_plan_amount`,sum(`goodsCnt`) as `goodsCnt`")->where("userId=$userId")->select();
运行结果:
{
"state": "200",
"msg": "成功",
"result": [
{
"s_plan_amount": "30.00",
"goodsCnt": "25"
}
]
}