soneway

Results 10 comments of soneway

@vigliensoni Hi, this problem have nothing to do with jq. just use javascript is ok. `const a = {'#1': 1}; console.log(a['#1']); // log 1 `

来个不一样的, 先把树形数据扁平化, 再查找 ```js // 扁平化数据 function getFlatData (data = [], flatData = {}, parentId) { data.forEach((item) => { const { children, ...rest } = item; flatData[item.id] = { ...rest,...

```js /** * 节流(被调用n次,只在time间隔时间点运行) * @param fn 回调函数 * @param time 延时 */ function throttle (fn, time = 300) { if (fn.pending) { return; } fn(); fn.pending = true; setTimeout(()...

```js function setIntervalBySetTimeout (fn, timeout) { function initTimeout () { clearTimeout(fn._tid); fn._tid = setTimeout(() => { fn(); initTimeout(); }, timeout); } initTimeout(); } const callback = () => { console.log(11111);...

恕我直言, 这其实就是react的bug, 整出这么大一堆概念, 就是想让你们接受这个bug, 不要踩这个坑

好像没说是数组还是字符的indexOf ```js function arrayIndexOf (array = [], item) { for (let i = 0; i < array.length; i++) { if (array[i] === item) { return i; } } return -1;...

```js [...'AbC'].map(i => i.toLowerCase() === i ? i.toUpperCase() : i.toLowerCase()).join('') ```

Check the component's React and Vuera's React is a same npm package

> reflow 翻译为 重排更加合理吧。 重排叫了快10年了, 突然来个回流, 有点蒙, 哈哈