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

vweb: fix headers

This commit is contained in:
Carlos Esquerdo Bernat
2019-09-05 14:46:24 +02:00
committed by Alexander Medvednikov
parent f83bc9528d
commit 8a77d4482c
4 changed files with 126 additions and 124 deletions

View File

@ -8,11 +8,11 @@ const (
struct App {
pub mut:
vweb vweb.Context // TODO embed
vweb vweb.Context // TODO embed
}
fn main() {
vweb.run<App>(Port)
vweb.run<App>(Port)
}
pub fn (app mut App) init() {
@ -20,16 +20,22 @@ pub fn (app mut App) init() {
}
pub fn (app mut App) json_endpoint() {
app.vweb.json('{"a": 3}')
app.vweb.json('{"a": 3}')
}
/*
/*
pub fn (app mut App) index() {
$vweb.html()
}
*/
*/
pub fn (app mut App) text() {
app.vweb.text('hello world')
app.vweb.text('hello world')
}
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')
}