forward | R Documentation |
Makes it such that the web server skips this method and uses the next one in line instead.
forward()
An object of class forward
.
app <- Ambiorix$new()
app$get("/next", function(req, res){
forward()
})
app$get("/next", function(req, res){
res$send("Hello")
})
if(interactive())
app$start()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.