react-sider icon indicating copy to clipboard operation
react-sider copied to clipboard

方法名语义化

Open sunchenguang opened this issue 7 years ago • 0 comments

Sider.jsx

this.fullPathMenuData = memoize(menuData => formatMenuPath(menuData));
this.selectedKeys = memoize((pathname, fullPathMenu) => (
    getMeunMatchKeys(getFlatMenuKeys(fullPathMenu), urlToList(pathname))
));

这两个都是方法,但是从命名上看是属性,很容易误导别人。

sunchenguang avatar Sep 10 '18 06:09 sunchenguang