如何从Parse数据库中检索数据并在html中显示

时间:2017-05-14 01:22:52

标签: javascript jquery html database parse-platform

我正在尝试检索通过其他网站发送到数据库的数据。我正在使用搜索栏来查询地址,一旦成功,我想在搜索栏下方的页面上的行中显示其余的对象。我在显示对象参数的语法时遇到问题。

的javascript:

Parse.initialize('###########');
databaseURI = 'mongodb://############';
var aptQuery = new Parse.Query(Apartment.address)
aptQuery.find({
  success:function(foundApts){
    console.log(foundApts);
  }, error: function(error){
    console.log(error);
  }
})
console.log(savedApartment);

HTML:

    <input type="search" id="aptSearch" placeholder="Address" >

1 个答案:

答案 0 :(得分:0)

要从对象获取字段,您可以写:

appartement.get("city");

要在HTML代码中设置它:

document.getElementById('aptSearch').value = appartement.get("city");

所以你的代码看起来像这样:

var aptQuery = new Parse.Query("Apartment")
aptQuery.find({
  success:function(foundApts){
    console.log(foundApts);
    for (var i in foundApts) {
        var appartement = foundApts[I];
        document.getElementById('aptSearch').value = appartement.get("city");
    }
  }, error: function(error){
    console.log(error);
  }
})