2019-07-30 13:46:10 +00:00
|
|
|
module main
|
|
|
|
|
|
|
|
import vweb
|
|
|
|
|
|
|
|
const (
|
2019-10-24 16:44:49 +00:00
|
|
|
port = 8082
|
2019-07-30 13:46:10 +00:00
|
|
|
)
|
|
|
|
|
2020-05-27 01:33:37 +00:00
|
|
|
struct App {
|
2020-12-31 16:07:24 +00:00
|
|
|
vweb.Context
|
2020-12-31 16:47:20 +00:00
|
|
|
mut:
|
|
|
|
cnt int
|
2019-07-30 13:46:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
2019-07-30 13:46:10 +00:00
|
|
|
}
|
|
|
|
|
2020-06-10 09:50:06 +00:00
|
|
|
pub fn (mut app App) init_once() {
|
2020-12-31 16:07:24 +00:00
|
|
|
app.handle_static('.')
|
2019-07-30 13:46:10 +00:00
|
|
|
}
|
|
|
|
|
2020-06-27 11:56:15 +00:00
|
|
|
pub fn (mut app App) json_endpoint() vweb.Result {
|
2020-12-31 16:07:24 +00:00
|
|
|
return app.json('{"a": 3}')
|
2019-07-30 13:46:10 +00:00
|
|
|
}
|
|
|
|
|
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++
|
2020-06-07 22:47:04 +00:00
|
|
|
show := true
|
2020-12-31 16:47:20 +00:00
|
|
|
// app.text('Hello world from vweb')
|
2020-06-07 11:26:47 +00:00
|
|
|
hello := 'Hello world from vweb'
|
2020-10-14 21:39:09 +00:00
|
|
|
numbers := [1, 2, 3]
|
2021-01-18 12:04:21 +00:00
|
|
|
app.enable_chunked_transfer(40)
|
2020-06-20 01:12:35 +00:00
|
|
|
return $vweb.html()
|
2019-08-10 21:02:48 +00:00
|
|
|
}
|
|
|
|
|
2020-12-31 16:07:24 +00:00
|
|
|
pub fn (mut app App) show_text() vweb.Result {
|
|
|
|
return app.text('Hello world from vweb')
|
2019-07-30 13:46:10 +00:00
|
|
|
}
|
2019-08-05 08:42:58 +00:00
|
|
|
|
2020-06-27 11:56:15 +00:00
|
|
|
pub fn (mut app App) cookie() vweb.Result {
|
2020-12-31 16:47:20 +00:00
|
|
|
app.set_cookie(name: 'cookie', value: 'test')
|
2020-12-31 16:07:24 +00:00
|
|
|
return app.text('Headers: $app.headers')
|
2019-09-20 00:01:52 +00:00
|
|
|
}
|