内置Web框架

  1. ['/post/:id']
  2. fn (b Blog) show_post(id int) vweb.Result {
  3. post := b.posts_repo.retrieve(id) or {
  4. return vweb.not_found()
  5. }
  6. return vweb.view(post)
  7. }

V语言论坛博客均采用内置的Web框架开发。