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