gpt4 book ai didi

javascript - 主干调用在 React 组件函数中不起作用

转载 作者:行者123 更新时间:2023-12-03 07:25:21 25 4
gpt4 key购买 nike

我正在尝试在 React 组件中创建快捷方法,我将此辅助函数添加到组件中:

    getLocalModel: function () {
return this.props.localModel.get.apply(this, arguments);
},

this.props.localModel 已定义,它是 Backbone 模型,但我收到以下错误消息:

TypeError: Cannot read property 'uploadResult' of undefined

我知道 Backbone 模型已定义,因为我进行了调试并出现了错误消息。我相信这个调用有问题

this.props.localModel.get.apply(this, arguments);

有人知道它可能有什么错误吗?

最佳答案

哎呀,简单的错误,看来正确的使用调用是

    getLocalModel: function () {
return this.props.localModel.get.apply(this.props.localModel, arguments);
},

关于javascript - 主干调用在 React 组件函数中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36025444/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com