javascript - 如何在客户端从服务器(Node JS 和 Express)接收和使用 JSON 对象?

标签 javascript json node.js express client-side

我正在尝试做一些看似非常简单的事情,但我在解决它时遇到了困难。用户可以使用带有 POST 方法的 HTML 表单提交一些文本。然后将其发送到 API 进行处理,并返回 JSON 对象。然后,我只希望 app.js 文件发送回这个 JSON 对象,以便我可以使用 JQuery 来使用它。 这是我的 app.js

中的 .post 方法
app.post('/', function(req, res){
 console.log("starting app.post");

  // See User Modeling API docs. Path to profile analysis is /api/v2/profile
  // remove the last / from service_url if exist
  var parts = url.parse(service_url.replace(/\/$/,''));

  var profile_options = { host: parts.hostname,
    port: parts.port,
    path: parts.pathname + "/api/v2/profile",
    method: 'POST',
    headers: {
      'Content-Type'  :'application/json',
      'Authorization' :  auth }
    };

  // create a profile request with the text and the https options and call it
      create_profile_request(profile_options,req.body.content)(function(error,profile_string) {
        if (error) {res.render('home.html',{'error': error.message});
                        console.log("errormessage: "+error.message);
      }
    else {
      // parse the profile and format it
      var profile_json = JSON.parse(profile_string);
      var flat_traits = flatten.flat(profile_json.tree);      
      // Extend the profile options and change the request path to get the visualization
      var fileName="file 1"; //this will eventually be imported automatically
      //console.log(flat_traits);     
      var scoreObject={"title":fileName, "percentage":functions.matchPercentage(flat_traits)}
  res.send(scoreObject); //this is what I assume should send this back client-side      
          });
    }
  });
    });

// creates a request function using the https options and the text in content
// the function that return receives a callback
var create_profile_request = function(options,content) {
  return function (/*function*/ callback) {
    // create the post data to send to the User Modeling service
    var post_data = {
  'contentItems' : [{ 
    'userid' : 'dummy',
    'id' : 'dummyUuid',
    'sourceid' : 'freetext',
    'contenttype' : 'text/plain',
    'language' : 'en',
    'content': content
  }]
    };
// Create a request to POST to the User Modeling service
var profile_req = https.request(options, function(result) {
  result.setEncoding('utf-8');
  var response_string = '';

  result.on('data', function(chunk) {
    response_string += chunk;
  });

  result.on('end', function() {

    if (result.statusCode != 200) {
      var error = JSON.parse(response_string);
      console.log("status: "+result.statusCode);
      callback({'message': error.user_message}, null);
      console.log(error.user_message);
    } else
      callback(null,response_string);
  });
});

profile_req.on('error', function(e) {
  callback(e,null);
});

profile_req.write(JSON.stringify(post_data));
profile_req.end();
  }
 };

所以我认为 res.send 是将数据传递到客户端的,但是我如何在客户端接收数据呢?这是我对 JScript 的尝试:

$.getJSON('/').done(function(data){
$('#resultsList').append('<li data-icon="arrow-r" data-iconpos="right" id="'+
        data.title+'">  <a href="#breakdownDialog"> <div id="cvResults"><h3>'+
        data.title+'</h3>   <span>'+data.percentage+
        '%</span></div></a><div id="output"></div></li>');
console.log(data.title+data.percentage);
}
});

我想从 JSON 对象中获取一些值并将它们放入现有 HTML 页面的列表中。目前,这只是将我带到一个不同的空白页面,上面写着未定义。 我应该如何从服务器获取 JSON 数据?

编辑:这是我用来提交数据的 HTML 表单:

<form method="POST" id="submitForm">
                <fieldset>
                    <textarea id="textArea" required="true" rows="5" name="content"></textarea>
                    <button class="btn btn-block" type="submit">
                            Analyse         
                    </button>
                </fieldset>
                </form>

最佳答案

您确定使用 res.send() 发送 json 吗?尝试设置标题 res.set('Content-Type', 'application/json') 或使用此 res.json() 而不是 res.send()

关于javascript - 如何在客户端从服务器(Node JS 和 Express)接收和使用 JSON 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28820738/

相关文章:

node.js - 我无法删除对 google 项目的操作

javascript - 如何在 Node 脚本中重用 Angular 模块

javascript - Shopify API 从外部站点获取购物车

javascript - 如何使用名为 "@attributes"的对象读取 JSON 输出?

javascript - 如何将SVG元素(使用Raphael JS lib创建)放入DIV元素(实现人民币点击管理)

php - 我如何添加这些 JSONS

javascript - 通过指定开发者的GET请求获取所有iOS应用及其信息

javascript - 将 UTC 时间字符串转换为用户本地时间

javascript - AngularJS 无法使用 translate-value 正确翻译

javascript - Meteor wrapAsync 同步执行但从不返回