あなたはID
として保存し、それを得る誰が私を助けることができるangularjsディレクティブ内でセッション記憶域を設定する方法は?
app.directive('myDirective', function (httpPostFactory) {
return {
restrict: 'A',
scope: true,
link: function (scope, element, attr) {
element.bind('change', function()
{
sessionStorage.setItem("ID","I'm a value saved with SessionStorage");
console.log(sessionStorage.getItem("SavedString"))
});
}
};
});
too-このコードを使用することができますか?アイテム 'ID'を設定しているように見えますがコンソールロギング' SavedString'はこれがオススメですか? – haxxxton