This may be obvious to others but I don't know the syntax for calling a function recursively in the following code:
//request.js
export default {
send() {
... do stuff ...
this.send(); // Can't call "send" of undefined
}
}
//main.js
import request from './request'
export default class Main extends Component {
init() {
request.send();
}
}
In the above example, I'm calling the send function from main.js. All this is working fine but I have a condition in the send function that will recall the same function. The problem is that I have no idea how to call the function from within the function. Anybody?
well just as a quick glimpse, I would say that you should
to see the value of it in the first and second request. I didn't build your code to check it, but I assume it is an issue with your context.
Still not sure what you try to achieve, but you can always use
again it is quite vague but maybe it will give you an idea.