v/examples/vweb/vweb_example.v

48 lines
794 B
V
Raw Normal View History

module main
import vweb
const (
2019-10-24 16:44:49 +00:00
port = 8082
)
2020-05-27 01:33:37 +00:00
struct App {
pub mut:
2019-09-05 12:46:24 +00:00
vweb vweb.Context // TODO embed
2019-09-20 00:01:52 +00:00
cnt int
}
fn main() {
2020-03-06 19:22:58 +00:00
println('vweb example')
2019-12-20 00:02:16 +00:00
vweb.run<App>(port)
}
2020-06-10 09:50:06 +00:00
pub fn (mut app App) init_once() {
app.vweb.handle_static('.')
}
2020-06-10 09:50:06 +00:00
pub fn (mut app App) init() {
}
2020-06-27 11:56:15 +00:00
pub fn (mut app App) json_endpoint() vweb.Result {
return app.vweb.json('{"a": 3}')
}
2020-06-20 01:12:35 +00:00
pub fn (mut app App) index() vweb.Result {
2019-12-06 21:44:22 +00:00
app.cnt++
show := true
2020-06-06 19:36:24 +00:00
//app.vweb.text('Hello world from vweb')
hello := 'Hello world from vweb'
numbers := [1,2,3]
2020-06-20 01:12:35 +00:00
return $vweb.html()
2019-08-10 21:02:48 +00:00
}
2020-06-27 11:56:15 +00:00
pub fn (mut app App) text() vweb.Result {
return app.vweb.text('Hello world from vweb')
}
2020-06-27 11:56:15 +00:00
pub fn (mut app App) cookie() vweb.Result {
2020-07-05 14:52:20 +00:00
app.vweb.set_cookie(name:'cookie', value:'test')
2020-06-27 11:56:15 +00:00
return app.vweb.text('Headers: $app.vweb.headers')
2019-09-20 00:01:52 +00:00
}