我试图在Axios请求中调用show
函数,在另一个函数中调用My Axios请求,如下所示:
我在Myfunction
中的Axios请求:
axios({
method: "Get",
timeout: 3000,
headers: {
..................
},
url: "https://XXXXXX/"
})
.then( function(response) {
console.log(response);
//Call function
app.show.bind(response);
})
.catch(function(error) {
console.log(error);
});
函数show
位于方法部分:
show (workspace_info) {
alert("I am here");
},
但是我收到一条错误消息:
TypeError: Cannot read property 'bind' of undefined
答案 0 :(得分:1)
一种非常简单的方法是:
app.show = function( workspaceInfo ) { // notice the camel case ;)
alert( 'I am here!' );
}
然后将其绑定到应用程序,如下所示:
app.show = app.show.bind( this ); // this is something we do a lot in React
最后,您可以像这样使用它:
app.show( response );
现在,请记住,在实际调用该函数之前,请完成所有设置。