Results 18 comments of Tangdy

拍平: `const deepFlatten = arr => [].concat(...arr.map(v => (Array.isArray(v) ? deepFlatten(v) : v)));` 用toString会改变数组里面的原始数据,应该会是扣分项。

请问使用`git rebase -i`后,每一次的冲突都要重新解决吗?

使用H5的 `Notification` 会没有权限, `Notification.permission` 默认是 `default` 且 `active tab`允许通知也无法使用 `backgroundjs` 发起通知,也无法使用 `Notification.requestPermission` 进行赋权。 版本: Chrome/73.0

curl --location --request POST 'https://website-api.shenlanbao.com/product/appointments/insurance/verCode' \ --header 'Content-Type: application/json' \ --data-raw '{"phone":"xxxxxxxxxxx","type":"sem"}'

**6.禁止 iOS 识别长串数字为电话** ``

**12.ios下取消input在输入的时候英文首字母的默认大写** `` [form](https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/form)

when i fix `ReferenceError: primordials is not defined` error, it work for my. [how-to-fix-referenceerror-primordials-is-not-defined-in-node-js](https://stackoverflow.com/questions/55921442/how-to-fix-referenceerror-primordials-is-not-defined-in-node-js) > running npx npm-force-resolutions and then run npm install solves my problem.

> > @SunXinFei 那你是怎么测试😂, 把你测试的demo发个代码片段不就行了? > > @deepkolos > > 代码在这里=>>>>> > > [index的副本.ts.txt](https://github.com/deepkolos/three-platformize/files/7740322/index.ts.txt) > > 代码在这里=>>>>> > > 我根据你的这个项目,写个demo,可以看到如果有任意几何体,瞬间崩溃 > > ![image](https://user-images.githubusercontent.com/5847281/146664087-256c1776-7b64-4983-8fb7-36e7d073f8a4.png) > > [https://developers.weixin.qq.com/s/P6cQcCmK7QvS而官方这个很稳定](https://developers.weixin.qq.com/s/P6cQcCmK7QvS%E8%80%8C%E5%AE%98%E6%96%B9%E8%BF%99%E4%B8%AA%E5%BE%88%E7%A8%B3%E5%AE%9A) 使用了 threejs 109 的...

> 最后在2022年3月份用的threejs-miniprogram实现的微信小程序AR 请问在threejs-miniprogram + VKSession里,存在带贴图的 glft 模型加载后穿模一样,展示不正常吗?就像设置了材质的 side属性一样,但是不在 VKSession 就是正常展示的

> > > 最后在2022年3月份用的threejs-miniprogram实现的微信小程序AR > > > > > > 请问在threejs-miniprogram + VKSession里,存在带贴图的 glft 模型加载后穿模一样,展示不正常吗?就像设置了材质的 side属性一样,但是不在 VKSession 就是正常展示的 > > 穿模问题,当时遇到了一次,是不是你改了renderGL(frame),里面的深度检测不要关 // 解决穿模问题 gl.enable(gl.DEPTH_TEST); 谢谢大佬指点💐,我使用的是官方提供的,确实是关闭了深度检测。开启后就正常了。不过这又引来了另外的问题。 * 小米10机器上,发现上屏的摄像头数据有问题,大约 1/4的区域有闪动的黑块。iOS 是正常的。 *...