我是开发Cordova AngularJS的初学者。我使用$localStorage
来保存数据。我这样用:
$http.get('http://127.0.0.1:8080/elodieService/evenements/' + $localStorage.idcategorie, {
params: {
fields: "titre_annonce,texte_annonce,adresse,imageJson",
format: "json"
}
}).then(function(result) {
$localStorage.listEventParCategorie = result.data;
});
它很好,它有效,但现在我想检查这个条件
if ($localStorage.'listEventParCategorie' + idcategorie == null) {
}
例如:我将listEventParCategorie
与idcategorie
连接起来,使$localStorage
动态,但不起作用。请帮帮我。
答案 0 :(得分:0)
您应该在if
条件中使用bracket notation:
if ($localStorage['listEventParCategorie' + idcategorie] == null) { ... }