我試圖從服務器獲取數據並顯示在網頁上或控制檯的數據我需要驗證該服務器,但我在收到錯誤類型錯誤:未定義是不是一個函數
resp.send(JSON.stringify(body));
^
得到一個錯誤
TypeError: undefined is not a function
該服務器是一些已經存在這給數據的時候,我們打它,所以我正從它 由於數據提前
var express=require("express");
var app=express();
var mysql=require("mysql");
var request = require('request');
var passport = require('passport')
var LocalStrategy = require('passport-local').Strategy;
var bodyParser = require("body-parser");
app.use(bodyParser.urlencoded({ extended: false }));
app.get('/service',function(req,res){
var id = req.query.name;
console.log('hi');
console.log(id);
request.post({
url : 'http://example.com:8080/rest/api/2/issue/'+id,
json : {
userName:'username',
password:'password'
}
},
function(error, resp, body){
if(error) {
console.log(error);
} else {
resp.send(JSON.stringify(body));
}
});
});
console.log('running');
app.listen(8082);
我投票結束這個問題作爲題外話,因爲這傢伙不斷刪除和重新打開同一個問題。 – Amberlamps