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

45 lines
647 B
V
Raw Normal View History

module main
import vweb
const (
2019-10-24 19:44:49 +03:00
port = 8082
)
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() {
2019-12-19 03:38:39 +03:00
mut app := App{}
app.vweb = vweb.Context{}
vweb.run(mut app, port)
2019-10-24 19:44:49 +03:00
//vweb.run<App>(Port)
}
pub fn (app mut App) init() {
app.vweb.handle_static('.')
}
pub fn (app mut App) json_endpoint() {
2019-09-05 15:46:24 +03:00
app.vweb.json('{"a": 3}')
}
pub fn (app mut App) index() {
2019-12-07 00:44:22 +03:00
app.cnt++
2019-09-20 03:01:52 +03:00
$vweb.html()
2019-08-11 00:02:48 +03:00
}
pub fn (app mut App) text() {
2019-11-26 09:34:04 +03:00
app.vweb.text('Hello world')
}
2019-09-05 15:46:24 +03:00
pub fn (app mut App) cookie() {
app.vweb.text('Headers:')
app.vweb.set_cookie('cookie', 'test')
app.vweb.text(app.vweb.headers)
app.vweb.text('Text: hello world')
2019-09-20 03:01:52 +03:00
}