以下のjob.js
ノードスクリプト内で、/getJobs
次の方法を使用して.Amを呼び出すにはどうすればよいですか$ is not defined.
job.js
var jobScedule = function (time, jobid) {
var params = {
"id": jobid
};
$.get('/getJobs', params, function (data) {
console.log(data);
});
}
script.js
.......
......
switch(context.pathname) {
case '/getJobs':
testUtils.runTest(context);
break;
}