vue-商品管理案例改進

来源:https://www.cnblogs.com/ygjzs/archive/2019/11/05/11802085.html
-Advertisement-
Play Games

案例改進 vue resource全局配置: 全局啟用 emulateJSON 選項 ...


案例改進

vue-resource全局配置:
Vue.http.options.root = 'http://vue.studyit.io/';
全局啟用 emulateJSON 選項
Vue.http.options.emulateJSON = true;

<div id="app">



    <div class="panel panel-primary">
      <div class="panel-heading">
        <h3 class="panel-title">添加品牌</h3>
      </div>
      <div class="panel-body form-inline">

        <label>
          Name:
          <input type="text" v-model="name" class="form-control">
        </label>

        <input type="button" value="添加" @click="add" class="btn btn-primary">
      </div>
    </div>



    <table class="table table-bordered table-hover table-striped">
      <thead>
        <tr>
          <th>Id</th>
          <th>Name</th>
          <th>Ctime</th>
          <th>Operation</th>
        </tr>
      </thead>
      <tbody>
        <tr v-for="item in list" :key="item.id">
          <td>{{item.id}}</td>
          <td>{{item.name}}</td>
          <td>{{item.ctime}}</td>
          <td>
            <a href="" @click.prevent="del(item.id)">刪除</a>
          </td>
        </tr>
      </tbody>
    </table>
// 如果我們通過全局配置了,請求的數據介面 根功能變數名稱,則 ,在每次單獨發起 http 請求的時候,請求的 url 路徑,應該以相對路徑開頭,前面不能帶 /  ,否則 不會啟用根路徑做拼接;
    Vue.http.options.root = 'http://vue.studyit.io/';
    // 全局啟用 emulateJSON 選項
    Vue.http.options.emulateJSON = true;

    // 創建 Vue 實例,得到 ViewModel
    var vm = new Vue({
      el: '#app',
      data: {
        name: '',
        list: [ // 存放所有品牌列表的數組
        ]
      },
      created() { // 當 vm 實例 的 data 和 methods 初始化完畢後,vm實例會自動執行created 這個生命周期函數
        this.getAllList()
      },
      methods: {
        getAllList() { // 獲取所有的品牌列表 
          // 分析:
          // 1. 由於已經導入了 Vue-resource這個包,所以 ,可以直接通過  this.$http 來發起數據請求
          // 2. 根據介面API文檔,知道,獲取列表的時候,應該發起一個 get 請求
          // 3. this.$http.get('url').then(function(result){})
          // 4. 當通過 then 指定回調函數之後,在回調函數中,可以拿到數據伺服器返回的 result
          // 5. 先判斷 result.status 是否等於0,如果等於0,就成功了,可以 把 result.message 賦值給 this.list ; 如果不等於0,可以彈框提醒,獲取數據失敗!

          this.$http.get('api/getprodlist').then(result => {
            // 註意: 通過 $http 獲取到的數據,都在 result.body 中放著
            var result = result.body
            if (result.status === 0) {
              // 成功了
              this.list = result.message
            } else {
              // 失敗了
              alert('獲取數據失敗!')
            }
          })
        },
        add() {  // 添加品牌列表到後臺伺服器
          // 分析:
          // 1. 聽過查看 數據API介面,發現,要發送一個 Post 請求,  this.$http.post
          // 2. this.$http.post() 中接收三個參數:
          //   2.1 第一個參數: 要請求的URL地址
          //   2.2 第二個參數: 要提交給伺服器的數據 ,要以對象形式提交給伺服器 { name: this.name }
          //   3.3 第三個參數: 是一個配置對象,要以哪種表單數據類型提交過去, { emulateJSON: true }, 以普通表單格式,將數據提交給伺服器 application/x-www-form-urlencoded
          // 3. 在 post 方法中,使用 .then 來設置成功的回調函數,如果想要拿到成功的結果,需要 result.body

          /* this.$http.post('api/addproduct', { name: this.name }, { emulateJSON: true }).then(result => {
            if (result.body.status === 0) {
              // 成功了!
              // 添加完成後,只需要手動,再調用一下 getAllList 就能刷新品牌列表了
              this.getAllList()
              // 清空 name 
              this.name = ''
            } else {
              // 失敗了
              alert('添加失敗!')
            }
          }) */

          this.$http.post('api/addproduct', { name: this.name }).then(result => {
            if (result.body.status === 0) {
              // 成功了!
              // 添加完成後,只需要手動,再調用一下 getAllList 就能刷新品牌列表了
              this.getAllList()
              // 清空 name 
              this.name = ''
            } else {
              // 失敗了
              alert('添加失敗!')
            }
          })
        },
        del(id) { // 刪除品牌
          this.$http.get('api/delproduct/' + id).then(result => {
            if (result.body.status === 0) {
              // 刪除成功
              this.getAllList()
            } else {
              alert('刪除失敗!')
            }
          })
        }
      }
    });

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • private NotificationManager manager; private Notification.Builder builder; @Override protected void onCreate(Bundle savedInstanceState) { super.onCrea... ...
  • protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (Button) fin... ...
  • private int year; private int monthOfYear; private int dayOfMonth; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(saved... ...
  • protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (Button) fin... ...
  • @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (B ...
  • 實現列表動畫 ...
  • 鉤子函數實現小球彈落 ...
  • 不使用動畫 使用過渡類名實現動畫 修改vue的首碼 第三方類實現動畫 需引入css文件:`` ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...