v/examples/vweb/vweb_example.v

57 lines
868 B
V
Raw Normal View History

module main
import vweb
2021-03-01 11:50:52 +01:00
import rand
const (
2019-10-24 18:44:49 +02:00
port = 8082
)
2020-05-27 03:33:37 +02:00
struct App {
2020-12-31 17:07:24 +01:00
vweb.Context
mut:
state shared State
}
struct State {
2020-12-31 17:47:20 +01:00
mut:
cnt int
}
fn main() {
2020-03-06 20:22:58 +01:00
println('vweb example')
vweb.run(&App{}, port)
}
2021-03-01 11:50:52 +01:00
['/users/:user']
pub fn (mut app App) user_endpoint(user string) vweb.Result {
id := rand.intn(100) or { 0 }
return app.json({
user: id
})
}
2020-06-20 03:12:35 +02:00
pub fn (mut app App) index() vweb.Result {
lock app.state {
app.state.cnt++
}
show := true
hello := 'Hello world from vweb'
numbers := [1, 2, 3]
2020-06-20 03:12:35 +02:00
return $vweb.html()
2019-08-10 23:02:48 +02:00
}
2020-12-31 17:07:24 +01:00
pub fn (mut app App) show_text() vweb.Result {
return app.text('Hello world from vweb')
}
2020-06-27 13:56:15 +02:00
pub fn (mut app App) cookie() vweb.Result {
2020-12-31 17:47:20 +01:00
app.set_cookie(name: 'cookie', value: 'test')
return app.text('Response Headers\n$app.header')
2019-09-20 02:01:52 +02:00
}
[post]
pub fn (mut app App) post() vweb.Result {
return app.text('Post body: $app.req.data')
}