Note that there are some explanatory texts on larger screens.

plurals
  1. POsyntax error :invalid label when trying to get data from remote machine
    primarykey
    data
    text
    <p>I am trying to get data from controller in another machine using jquery ajax request :</p> <pre><code>var url = 'http://192.168.1.206/publish' + '/Home/GetStudentById/'; var datas = 'studentId=' + 13; $.ajax({ type: 'POST', url: url, async: false, data: datas, crossDomain: false, jsonpCallback: 'jsonCallback', contentType: "application/json", dataType: 'jsonp', error: function (data) { alert('bad'); }, success: function (data) { alert('good'); }, complete: function (data) { debugger; alert('foo'); } }); </code></pre> <p>It returns back with data but always gives me this error <strong><code>Syntax Error: invalid label</code></strong></p> <p><img src="https://i.stack.imgur.com/naQYE.png" alt="enter image description here"></p> <p>and json result looks like :</p> <pre><code>{"Student0":{"StudentID":"13","RegisterationNo":"125426","FullName":"mohamed bader mohamed bader","ClassName":"First Primary","ClassroomName":"1/5","Phone":"11212","CivilID":"153641789","CurrentClassID":"4","CurrentYearID":"1"},"Student1":{"StudentID":"13","RegisterationNo":"125426","FullName":"mohamed bader mohamed bader","ClassName":"First Primary","ClassroomName":"1/2","Phone":"11212","CivilID":"153641789","CurrentClassID":"4","CurrentYearID":""},"Student2":{"StudentID":"13","RegisterationNo":"125426","FullName":"mohamed bader mohamed bader","ClassName":"First Primary","ClassroomName":"1/3","Phone":"11212","CivilID":"153641789","CurrentClassID":"4","CurrentYearID":""},"Student3":{"StudentID":"13","RegisterationNo":"125426","FullName":"mohamed bader mohamed bader","ClassName":"First Primary","ClassroomName":"1/4","Phone":"11212","CivilID":"153641789","CurrentClassID":"4","CurrentYearID":""},"Student4":{"StudentID":"13","RegisterationNo":"125426","FullName":"mohamed bader mohamed bader","ClassName":"First Primary","ClassroomName":"1","Phone":"11212","CivilID":"153641789","CurrentClassID":"4","CurrentYearID":""}} </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload