CSS 笔记 2023-07-03 .code-example { display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 40px 0; } 居中 Center 在我浅薄的前端经历中,常遇到两种居中的场景。一种是在一个 div 中放一个 d ...
微信小程序开发的 tips 2020-08-30 在开发测试过程中,我注意到 iOS 和模拟器、安卓设备等略有不同。如下: iOS 的 JavaScript 没有 Promise.finally()。可以自己在 app.js 中手动添加如下代码: App({ OnLaunch() { // ios 端没有 Promise.finally(),需要自己定义 Promise.prototype.f ...