JSON POST请求-接收JSON对象

时间:2018-07-29 18:56:48

标签: javascript jquery json ajax post

在我的.html文件中,我有以下代码:

select (count(*) >= 3)
from (select sid, bno
      from schedule scj inner join revent on scj.eid = revent.reid
      where 12345 = cno AND 'hello' = sid
     ) result;

然后在我的.js服务器中:

    var country = {
        "c_3" : {
            "name" : countryName,
            "population" : countryPop,
            "language" : countryLang
            }
        };

    var data = JSON.stringify(country);

    $.post('http://127.0.0.1:8090/admin/addCountry', data, function(data){},'json')     
    };

但是使用console.log()我可以确定在.js中变量countryName,countryPop等是未定义的。但是我正在努力找出原因。任何帮助将不胜感激-谢谢!

0 个答案:

没有答案