2 comments (2 comments)0 reactions (0 reactions)1 assignee (1 assignee)TypeScript12,714 stars (12,714 stars)2,228 forks (2,228 forks)batch import
help wanted
Description
如图所示,点击函数直接就是函数名,实际应该是this.xxx()

Contributor guide
- Tech stack
- typescriptreact
- Domain
- frontend
- Issue type
- bug
- DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
- 3
- Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
- 1-3 hours
- Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
- stale
- ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
- mostly clear
- Prerequisites
- Understanding of JavaScript 'this' contextFamiliarity with lowcode engine variable binding
- Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
- 30
- Research direction
- Investigate the variable binding mechanism in lowcode engine, specifically how custom functions are invoked. Look for where the function is called without proper 'this' context. Check the component responsible for rendering variable bindings and ensure that when a custom function is bound, it is called as `this.functionName()` instead of just `functionName`. Refer to similar issues or PRs for pattern.