Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

在render方法中引用组件本身的方法时,编译出来的代码会在方法前面加上render #3731

Closed
moonreplace opened this issue Jul 9, 2019 · 6 comments
Assignees

Comments

@moonreplace
Copy link

问题描述
在H5编译环境中,如果在render方法中引用了类本身的方法,会在编译出来的代码自动加上render前缀,而原来的方法并没有加上render前缀
1.3.2没有问题,在1.3.5和1.3.6中能稳定复现

复现步骤

// 这里可以贴代码
// 点击链接查看如何插入代码:
// https://coding.net/help/doc/project/markdown.html#i-5

// ```js
class Demo extends Component {
    getAppDesc() {
        return (
            <Text>Demo</Text>
        );
    }
    render() {
         const desc = this.getAppDesc()
         return (
             <View>{desc}</View>
         );
    }
}
// ```

// 提供完整可复现的代码和整理好代码格式,有助于我们快速定位问题,节省你我时间。
// 代码提供不全或代码格式混乱的 issues 【有可能被忽略】,烦请各位注意。

报错信息
屏幕快照 2019-07-09 15 46 48
屏幕快照 2019-07-09 15 46 37
屏幕快照 2019-07-09 15 50 39

系统信息

  • 操作系统: [e.g. Mac, Linux]
  • Taro 版本 [e.g. v.1.3.5, v1.3.6]
  • Node.js 版本 [e.g. v10.0.0]
  • 报错平台 [h5]
@taro-bot
Copy link

taro-bot bot commented Jul 9, 2019

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@Garfield550
Copy link
Collaborator

如果写成 renderAppDesc() 呢?

@yuche yuche added the H5 label Jul 9, 2019
@taro-bot taro-bot bot assigned Littly Jul 9, 2019
@taro-bot
Copy link

taro-bot bot commented Jul 9, 2019

CC @Littly

@moonreplace
Copy link
Author

如果写成 renderAppDesc() 呢?

这样是可以的

@Garfield550
Copy link
Collaborator

如果写成 renderAppDesc() 呢?

这样是可以的

那就临时这样写吧... 2333
可能是被这个逻辑影响了吧。
image

@yuche yuche added the 编译器 label Jul 9, 2019
@taro-bot taro-bot bot assigned yuche Jul 9, 2019
@taro-bot
Copy link

taro-bot bot commented Jul 9, 2019

CC @yuche

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants