如何在angularjs中动态使用$ localStorage?

时间:2016-02-22 10:25:53

标签: javascript jquery angularjs cordova local-storage

我是开发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) {

}

例如:我将listEventParCategorieidcategorie连接起来,使$localStorage动态,但不起作用。请帮帮我。

1 个答案:

答案 0 :(得分:0)

您应该在if条件中使用bracket notation

if ($localStorage['listEventParCategorie' + idcategorie] == null) { ... }