Error returning jquery

0

I'm using php + jquery

return is a string of type

[["local","pressão instantânea"],["Campo Grande",1010.6],["Campo Grande",1011.1],["Campo Grande",1010.2]]

Being that in return comes strange metadata. I've read something about CDATA. But, I did not understand how to solve this question. Would anyone give a help?

$.ajax({
    type: 'POST',
    url: link,
    data: {
        idAtt: attributes,
        idData: idData
    }
}).done(function(data) {

    alert(data);
    console.log(data);
}

<br />
<font size='1'><table class='xdebug-error xe-notice' dir='ltr' border='1' cellspacing='0' cellpadding='1'>
<tr><th align='left' bgcolor='#f57900' colspan="5"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> Notice: Undefined variable: cases in /var/www/html/dashboard_admin/models/eav-model.php on line <i>716</i></th></tr>
<tr><th align='left' bgcolor='#e9b96e' colspan='5'>Call Stack</th></tr>
<tr><th align='center' bgcolor='#eeeeec'>#</th><th align='left' bgcolor='#eeeeec'>Time</th><th align='left' bgcolor='#eeeeec'>Memory</th><th align='left' bgcolor='#eeeeec'>Function</th><th align='left' bgcolor='#eeeeec'>Location</th></tr>
<tr><td bgcolor='#eeeeec' align='center'>1</td><td bgcolor='#eeeeec' align='center'>0.0000</td><td bgcolor='#eeeeec' align='right'>236104</td><td bgcolor='#eeeeec'>{main}(  )</td><td title='/var/www/html/dashboard_admin/index.php' bgcolor='#eeeeec'>.../index.php<b>:</b>0</td></tr>
<tr><td bgcolor='#eeeeec' align='center'>2</td><td bgcolor='#eeeeec' align='center'>0.0000</td><td bgcolor='#eeeeec' align='right'>236664</td><td bgcolor='#eeeeec'>require_once( <font color='#00bb00'>'/var/www/html/dashboard_admin/config.php'</font> )</td><td title='/var/www/html/dashboard_admin/index.php' bgcolor='#eeeeec'>.../index.php<b>:</b>9</td></tr>
<tr><td bgcolor='#eeeeec' align='center'>3</td><td bgcolor='#eeeeec' align='center'>0.0001</td><td bgcolor='#eeeeec' align='right'>237280</td><td bgcolor='#eeeeec'>require_once( <font color='#00bb00'>'/var/www/html/dashboard_admin/loader.php'</font> )</td><td title='/var/www/html/dashboard_admin/config.php' bgcolor='#eeeeec'>.../config.php<b>:</b>40</td></tr>
<tr><td bgcolor='#eeeeec' align='center'>4</td><td bgcolor='#eeeeec' align='center'>0.0002</td><td bgcolor='#eeeeec' align='right'>243544</td><td bgcolor='#eeeeec'>EmergencyDashboard->__construct(  )</td><td title='/var/www/html/dashboard_admin/loader.php' bgcolor='#eeeeec'>.../loader.php<b>:</b>28</td></tr>
<tr><td bgcolor='#eeeeec' align='center'>5</td><td bgcolor='#eeeeec' align='center'>0.0003</td><td bgcolor='#eeeeec' align='right'>250352</td><td bgcolor='#eeeeec'>PresentationModelFacadeController->loadChart(  )</td><td title='/var/www/html/dashboard_admin/classes/class-EmergencyDashboard.php' bgcolor='#eeeeec'>.../class-EmergencyDashboard.php<b>:</b>131</td></tr>
<tr><td bgcolor='#eeeeec' align='center'>6</td><td bgcolor='#eeeeec' align='center'>0.0003</td><td bgcolor='#eeeeec' align='right'>255240</td><td bgcolor='#eeeeec'>EAVModel->getDataSelected(  )</td><td title='/var/www/html/dashboard_admin/controllers/presentationmodelfacade-controller.php' bgcolor='#eeeeec'>.../presentationmodelfacade-controller.php<b>:</b>71</td></tr>
<tr><td bgcolor='#eeeeec' align='center'>7</td><td bgcolor='#eeeeec' align='center'>0.0009</td><td bgcolor='#eeeeec' align='right'>269072</td><td bgcolor='#eeeeec'>EAVModel->getTransformations(  )</td><td title='/var/www/html/dashboard_admin/models/eav-model.php' bgcolor='#eeeeec'>.../eav-model.php<b>:</b>401</td></tr>
</table></font>
[["local","pressão instantânea"],["Campo Grande",1010.6],["Campo Grande",1011.1],["Campo Grande",1010.2]]
    
asked by anonymous 12.12.2015 / 23:00

1 answer

3

I think the problem is due to an error that triggers the debugger of the framework you are using. With this, the debugger of this framework printa the information, which is a kind of debugger backtrace, along with the json result.

What you call "metadadados" I deduce that it is the backtrace of the framework debugger.

Correct the error pointed to by the debugger and you probably will not have the problem any longer.

According to the debug, the error is this:

Undefined variable: cases in /var/www/html/dashboard_admin/models/eav-model.php on line 716

An undefined variable, called "cases" in the file /var/www/html/dashboard_admin/models/eav-model.php at line 716.

    
12.12.2015 / 23:16