Skip to content

Instantly share code, notes, and snippets.

View daief's full-sized avatar
🌞

daief daief

🌞
View GitHub Profile

微信小程序的问题记录(Taro)

滚动穿透

当使用弹框时,滚动蒙层会带动底下页面的滚动。

解决方式:外层组件组件事件冒泡,如果内层组件有滚动内容,则使用 ScrollView

 e.stopPropagation()}>
@daief
daief / TypeScript: code => ast => code.md
Last active August 3, 2023 08:26
零散的代码片段 - Messy snippets

TypeScript 代码与 AST 之间的转换,即 code => AST => code

操作 AST 时,建议结合 https://astexplorer.net/

/**
 * @see https://blog.scottlogic.com/2017/05/02/typescript-compiler-api-revisited.html
 */
import * as ts from "typescript";