在我的.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等是未定义的。但是我正在努力找出原因。任何帮助将不胜感激-谢谢!