我有一个使用CodeIgniter的应用程序构建,我有错误,我的控制台告诉我这个:
mydb.child("users").child(uid).child("inventory").addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
for (DataSnapshot childSnapshot: dataSnapshot.getChildren()) {
Log.d("itemname", childSnapshot.getChild("name").getValue());
Item item = childSnapshot.getValue(Item.class);
Log.d("itemname",item.getName());
}
}
@Override
public void onCancelled(DatabaseError databaseError) {
throw databaseError.toException(); // don't ignore errors
}
}
答案 0 :(得分:0)
我有同样的错误,事实证明是这样,我必须像这样配置配置文件:
$config['base_url'] = getenv('BASE_URL');
。
当然,使用getenv是可选的,但是要使用 <?php echo base_url(); ?>
,我需要添加到application / config / config.php文件中。
根据文档Codeigniter Config
希望有帮助。