0
聞く私には、表示ページビュー機能コンポーネントの負荷を呼び出すはメタタグを返さないループのためのjsオブジェクトを反応させるの
render() {
const { currentPageData } = this.props;
return (
<div>
{this.displayPageView()}
</div>
)
}
私はにconsole.logが、ボットの見返りに、キーと値を得た
displayPageView(){
const obj = {
centralead : {add: "1", edit: "1", index: "1", delete: "1"},
contacts : {add: "1", edit: "1", index: "1", view: "1", archive: "1"},
links : {add: "1", edit: "1", index: "1", view: "1", delete: "1"}
};
forEach(accessKey,(value,key) => {
console.log("key >>",key);
forEach(value,(value2,key2) => {
console.log("value2 >>",value2);
console.log("key2 >>",key2);
return (<div><h1>{key}</h1><h1>{key2}</h1><h1>{value2}</h1></div>);
});
});
}
承りdisplaPageView機能私はforeachを'lodash'から使いました。