我在数字海洋上托管了Parse服务器,并希望使用其本地数据存储,但是当我要检索查询时,其显示空白屏幕,而logcat没有显示任何信息。 从网络查询,它可以正常工作,但是每当我使用.enableLocalDataStore()时,它什么都不显示。 下面是应用程序配置。
ParseQuery<ParseObject> query = new ParseQuery<ParseObject>(Classnamevariable);
query.fromLocalDatastore();
并且有查询语句,请帮助解决该问题。
/* here is the html */
<div class="container">
<div class="holder">
<img src="https://www.bmw.com.mt/content/dam/bmw/common/all-models/4-series/gran-coupe/2017/images-and-videos/images/BMW-4-series-gran-coupe-images-and-videos-1920x1200-12.jpg.asset.1519121502869.jpg" class="img1">
<div class="text">Lorem Ipsum is simply dummy text of the printing </div>
</div>
</div>
/* And here is the css */
.container
{
border: 1px solid;
padding: 20px;
}
.img1
{
width: 500px;
height: 500px;
}
.holder
{
width: 500px;
margin: 0 auto;
}
.text/*Uncomment any of the below 3 lines to see the text left-aligned, right-aligned or center-aligned whatever u want*/
{
text-align: left;
/* text-align: right; */
/* text-align: center; */
}