v/examples/vweb/vweb_example.v

46 lines
746 B
V
Raw Normal View History

module main
import vweb
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
2020-12-31 17:47:20 +01:00
mut:
cnt int
}
fn main() {
2020-03-06 20:22:58 +01:00
println('vweb example')
2019-12-20 01:02:16 +01:00
vweb.run<App>(port)
}
2020-06-10 11:50:06 +02:00
pub fn (mut app App) init_once() {
2020-12-31 17:07:24 +01:00
app.handle_static('.')
}
2020-06-27 13:56:15 +02:00
pub fn (mut app App) json_endpoint() vweb.Result {
2020-12-31 17:07:24 +01:00
return app.json('{"a": 3}')
}
2020-06-20 03:12:35 +02:00
pub fn (mut app App) index() vweb.Result {
2019-12-06 22:44:22 +01:00
app.cnt++
show := true
2020-12-31 17:47:20 +01:00
// app.text('Hello world from vweb')
hello := 'Hello world from vweb'
numbers := [1, 2, 3]
app.enable_chunked_transfer(40)
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')
2020-12-31 17:07:24 +01:00
return app.text('Headers: $app.headers')
2019-09-20 02:01:52 +02:00
}