可以在SQL中判断一下,如果分母为0或是空,赋值一个特别大的比如99999999
在标签显示的时候,判断就行了
function(){
if(this.targetValue==99999999 )
{
return this.category+this.value+'/0';
}
else
{ return this.category+this.value+'/'+this.targetValue;}}
-----------------------------------------------------
https://bbs.fanruan.com/wenda/question/199130.html