iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 23
0
Modern Web

把前後分離製作的網站組起來系列 第 23

倒數第8天

  • 分享至 

  • xImage
  •  

到目前logo的地方都是沒有圖
https://ithelp.ithome.com.tw/upload/images/20210613/20119035NGgGu27I3a.png

放入logo
https://ithelp.ithome.com.tw/upload/images/20210613/20119035nvgG9dZadt.png

對應程式碼:
https://ithelp.ithome.com.tw/upload/images/20210613/20119035u4blPbbQhB.png

這裡圖不能顯示..我再找時間回來debug
/images/emoticon/emoticon02.gif

後來發現是放錯階~
分享debug的方法:
https://ithelp.ithome.com.tw/upload/images/20210614/20119035cejIIXMufK.png
就是用chrome的工具->開發者工具->會顯示錯誤
後來就是把圖片搬家就好了~
https://ithelp.ithome.com.tw/upload/images/20210614/20119035sTjCdzF7pD.png

https://ithelp.ithome.com.tw/upload/images/20210614/20119035yFFl6pgdhA.png


結果卡在8080連不上~QQ給我點時間來debug...

解決方法:我是windows10
就是打開cmd
然後打上netstat -ano|findstr 8080

回到springboot啟動一下
https://ithelp.ithome.com.tw/upload/images/20210613/20119035Z7Dz4uIZYC.png
https://ithelp.ithome.com.tw/upload/images/20210614/20119035cvZXEG5YwE.png
https://ithelp.ithome.com.tw/upload/images/20210614/20119035J0wkzZ1mXg.png


分享完debug讓我們接下去~
複製一個product-list-table.component.html檔案
重新命名:product-list-grid.component.html
https://ithelp.ithome.com.tw/upload/images/20210704/20119035KaUxcFeAa9.png

修改product-list.component.css變成連到product-list-grid.component.html 檔案

https://ithelp.ithome.com.tw/upload/images/20210704/20119035Pfk88SopUf.png


重新編寫:product-list-grid.component.html

先打"可以作動"確認可以做動~

程式碼:

<div class="main-content">
  <div class="section-content section-content-p30">
    <div class="contain-fluid">
      <div class="row">

<p> 可以作動</p>

      </div>
    </div>
  </div>
</div>


https://ithelp.ithome.com.tw/upload/images/20210704/20119035DNWSTuy13F.png

後面更改程式碼+做出方格:
內容區的顯示
https://ithelp.ithome.com.tw/upload/images/20210710/20119035dUODwKA9EC.png

https://ithelp.ithome.com.tw/upload/images/20210710/20119035WzNwoNEVk7.png

<div class="main-content">
  <div class="section-content section-content-p30">
    <div class="contain-fluid">
      <div class="row">
        <div >

          <!--內容區的顯示-->>
          <div *ngFor="let tempProduct of products" class="col-md-3">

            <div class="product-box">
              <img src="{{ tempProduct.imageUrl }}" class="img-responsive">

            <h1>{{ tempProduct.name}}</h1>


            </div>

            
          </div>
        </div>

      </div>
    </div>
  </div>
</div>



顯示價格: <div class="price">{{ tempProduct.unitPrice}}</div>
https://ithelp.ithome.com.tw/upload/images/20210710/20119035fvIt6J3l29.png

https://ithelp.ithome.com.tw/upload/images/20210710/201190354yDoSb0Qiv.png


加入購物車

<div class="main-content">
  <div class="section-content section-content-p30">
    <div class="contain-fluid">
      <div class="row">
        <div >

          <!--內容區的顯示-->>
          <div *ngFor="let tempProduct of products" class="col-md-3">

            <div class="product-box">
              <img src="{{ tempProduct.imageUrl }}" class="img-responsive">

            <h1>{{ tempProduct.name}}</h1>
          <div class="price">{{ tempProduct.unitPrice | currency:'USD'}}</div>
          <a href="#" class="primary-btn">購物車</a>


            </div>


          </div>
        </div>

      </div>
    </div>
  </div>
</div>


https://ithelp.ithome.com.tw/upload/images/20210710/20119035xlplSbuast.png


我想我寫到這裡時應該差不多都完成了

那我就會想把第9天的mysql建的過程step by step給他打一下

因為覺得似乎跳太快~要把畫面都截圖一下

然後後面有空的話
再練習把JDBC的資料庫從MYSQL的連線改成ORCAL或Microsoft SQL Server
/images/emoticon/emoticon01.gif

Microsoft SQL Server我覺得仿間的課本不好找
可以來記錄一下/images/emoticon/emoticon08.gif

DEAR ALL我們明天見/images/emoticon/emoticon05.gif


上一篇
漂亮網站製作-倒數第9天
下一篇
倒數第7天
系列文
把前後分離製作的網站組起來30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言