Go基礎學習記錄 - 編寫Web應用程式 - 重新調整項目目錄結構(一)

來源:互聯網
上載者:User

轉載
Go基礎學習記錄 - 編寫Web應用程式 - 重新調整項目目錄結構(一)

重新調整項目目錄結構

前面的一些文章介紹,完全可以做一個簡單的Web應用,但是如果用過PHP或者是Python等語言的架構開發Web應用的時候會發現,從結構目錄上來說完全是一個成熟的架構了,但是對於Golang來說,似乎並沒有什麼成熟的架構,網上大多數現成的架構,也都是很隨意,比如最流行的Beego,大概看了下,功能很齊全,可以直接上手使用,但是對於像我習慣MVC方式的,這不得不讓我覺得,這樣的寫代碼方式,似乎有些讓我不習慣很習慣,下面讓我來踩踩坑,做個適合自己開發的架構。

首先我們把前面文章中的視圖做下整理,將view.html和edit.html,轉移到templates檔案夾,以後這個檔案夾就是我們自己放模板的檔案夾。同時我們將view.html和edit.html進行下UI,我這邊使用了Bootstrap4.0版本,代碼分別如下

templates/view.html

<!doctype html><html lang="en">  <head>    <meta charset="utf-8">    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">    <title>{{.Title}}</title>    <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">  </head>    <body>    <div class="container">      <div class="col-md-12">        <div class="text-center">          <h1> {{.Title}}</h1>        </div>                <p>[<a href="/edit/{{.Title}}">edit</a>]</p>        <div>{{printf "%s" .Body}}</div>      </div>    </div>        <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>    <script src="https://cdn.bootcss.com/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>    <script src="https://cdn.bootcss.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>  </body></html>

templates/edit.html

<!doctype html><html lang="en">  <head>    <meta charset="utf-8">    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">    <title>Editing {{.Title}}</title>    <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">  </head>    <body>    <div class="container">      <div class="col-md-12">        <div class="text-center">          <h1>Editing:【 {{.Title}}】</h1>        </div>        <form action="/save/{{.Title}}" method="POST">          <div class="form-group">            <textarea class="form-control" name="body" rows="20" cols="80">{{printf "%s" .Body}}</textarea>          </div>          <button type="submit" class="btn btn-primary">Submit</button>        </form>      </div>    </div>    <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>    <script src="https://cdn.bootcss.com/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>    <script src="https://cdn.bootcss.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>  </body></html>

同時修改templates

有原來的

var templates = template.Must(template.ParseFiles("template/edit.html", "template/view.html"))

修改為

var templates = template.Must(template.ParseFiles("templates/edit.html", "templates/view.html"))

重新編譯並運行代碼

$ go install$ wiki

完美,一切正常。(正常不代表沒問題),後面繼續

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.