0

以下の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; 
}
4

1 に答える 1

1

request モジュールが必要です。http リクエストを作成するのに役立ちます。

var request = require('request');
request('http://www.google.com', function (error, response, body) {
  if (!error && response.statusCode == 200) {
    console.log(body) // Print the google web page.
  }
})
于 2013-11-13T08:18:10.773 に答える