0
をループ私はこのオブジェクトを持っています。IONIC 2、オブジェクト
Object.keys(JSON.parse(jobType)).forEach(key=> {
console.log(jobType[key]) ;
});
と
jobType.forEach((value, key, index) => {
console.log("This is the value", value)
console.log("from the key", key)
})
をしかし、それは動作しません:私は、私が試してみました
getJobType(letter){
let jobType = JSON.parse(localStorage.getItem('jobType'))
//if my letter matches the key in the object then i want to return the value
}
のように見える関数を記述することを計画します。