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

vweb example

This commit is contained in:
Alexander Medvednikov
2019-07-30 21:15:17 +02:00
parent 5b68e2ff50
commit ad8b105b2c
2 changed files with 6 additions and 2 deletions

View File

@ -2,9 +2,13 @@ This is pre-alpha software.
Lots of things are broken and not implemented yet in V and vweb.
There's no documentation yet, have a look at https://github.com/vlang/vtalk for an example of a simple vweb app.
There's no documentation yet, have a look at a simple example:
`vtalk.v` contains all GET and POST actions.
https://github.com/vlang/v/tree/master/examples/vweb/test_app.v
There's also the V forum: https://github.com/vlang/vorum
`vorum.v` contains all GET and POST actions.
```Go
pub fn (app mut App) index() {

View File

@ -1,30 +0,0 @@
module main
import vweb
const (
Port = 8082
)
struct App {
pub mut:
vweb vweb.Context // TODO embed
}
fn main() {
println('Running vweb test on http://localhost:$Port')
vweb.run<App>(Port)
}
pub fn (app mut App) init() {
app.vweb.serve_static('/css.css', 'static/css.css')
app.vweb.serve_static('/jquery.js', 'static/jquery.js')
}
pub fn (app mut App) json_endpoint() {
app.vweb.json('{"a": 3}')
}
pub fn (app mut App) index() {
app.vweb.text('hello world')
}