我正在尝试检索通过其他网站发送到数据库的数据。我正在使用搜索栏来查询地址,一旦成功,我想在搜索栏下方的页面上的行中显示其余的对象。我在显示对象参数的语法时遇到问题。
的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" >
答案 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);
}
})