1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/vweb/vweb_example.v

48 lines
702 B
V
Raw Normal View History

module main
import vweb
const (
2019-10-24 19:44:49 +03:00
port = 8082
)
2020-05-27 04:33:37 +03:00
struct App {
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
}
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)
}
2020-06-05 22:04:18 +03:00
pub fn (mut app App) init() {
app.vweb.handle_static('.')
}
2020-05-17 14:51:18 +03:00
pub fn (mut app App) json_endpoint() {
2019-09-05 15:46:24 +03:00
app.vweb.json('{"a": 3}')
}
2020-05-17 14:51:18 +03:00
pub fn (mut app App) index() {
2019-12-07 00:44:22 +03:00
app.cnt++
show:= true
2020-06-06 22:36:24 +03:00
//app.vweb.text('Hello world from vweb')
hello := 'Hello world from vweb'
numbers := [1,2,3]
2020-06-06 22:36:24 +03:00
$vweb.html()
2019-08-11 00:02:48 +03:00
}
2020-05-17 14:51:18 +03:00
pub fn (mut app App) reset() {
2019-12-20 03:02:16 +03:00
}
2020-05-17 14:51:18 +03:00
pub fn (mut app App) text() {
2020-06-06 22:36:24 +03:00
app.vweb.text('Hello world from vweb')
}
2020-05-17 14:51:18 +03:00
pub fn (mut app App) cookie() {
2019-09-05 15:46:24 +03:00
app.vweb.set_cookie('cookie', 'test')
app.vweb.text('Headers: $app.vweb.headers')
2019-09-20 03:01:52 +03:00
}