1

我试图显示一条错误消息来说明,当数据库(mysql)的结果为 0 时,这将是一条错误消息。

下面的代码尝试使用 ajax 来获取 SQL 结果,当它返回 0 错误时将显示。

$.ajax({
  type: "POST",
  url: "charts/prod.php?year=" + $("#selectyear").val() + "&month=" + $("#selectmonth").val(),
  dataType: "json", // serializes the form's elements.
  success: function (result) { 
  var chart = c3.generate({
       bindto: '#piepie',
       data: result.value,
       color: { 
         pattern: ['#f35213', '#f1af4c'] },
         pie: { title: "Productivity", }
     });

  },
  error: function() {

        if (result.percentage==undefined){ 
  alert ('Data are not ready yet!!');  
} else {
alert(result.percentage);
}
}   
});
4

3 回答 3

0

$.ajax({
      type: "POST",
      url: "charts/prod.php?year=" + $("#selectyear").val() + "&month=" + $("#selectmonth").val(),
      dataType: "json", // serializes the form's elements.
      success: function (result) { 
        
        if (result.value == "0"){
          alert ('ERROR!!');  
        } else {
        
         var chart = c3.generate({
           bindto: '#piepie',
           data: result.value,
           color: { 
             pattern: ['#f35213', '#f1af4c'] },
             pie: { title: "Productivity", }
         });
        
        }
      },
      error: function() {
          alert ('Error');  
      } 
});

尝试这个

于 2016-10-18T01:29:46.927 回答
0

尝试这个!

if ((typeof result !== " undefined") && (result !== null) && (result == 0)){
    alert("YourErrorMessageHere"); 
}
于 2016-10-18T02:31:21.273 回答
0
    if (result.percentage.length==0){ // THIS IS WHAT YOU NEED.
      alert ('ERROR!!');  
    } else {
     // YOUR CODE GOES HERE.

    }

正如你所评论的,你得到的结果是'{“percentage”:[]}'。所以你有百分比属性作为长度为 0 的数组。所以,你只需要测试它。

于 2016-10-18T01:57:30.767 回答