對(duì)數(shù)據(jù)進(jìn)行一些基本操作(四)

接收post請(qǐng)求(vue+axios)解決跨域問(wèn)題(三)

效果預(yù)覽
最終效果預(yù)覽
node路由配置增刪改查
//查詢語(yǔ)句
var selAll='select * from list';
//根據(jù)post的id查詢
var selId='select * from list where id=?';
//插入數(shù)據(jù)
var addData='insert into list (u_name,u_phone) values (?,?)';
//刪除數(shù)據(jù)
var delData='delete from list where id=?';
//更新數(shù)據(jù)
var upData='update list set u_name=?,u_phone=? where id=?'
//更新數(shù)據(jù)
router.post('/edit',function(req,res,next){
    var params=req.body;
    console.log(params)
    pool.getConnection(function(err,suc){
        suc.query(upData,[params.name,params.phone,params.id],function(err,result){
            console.log(err)
            console.log(result)
            if(result){
                result={
                    code:200,
                    msg:'更新數(shù)據(jù)成功'
                }
            }
            res.json(result);
            suc.release()
        })
    })
})
//刪除數(shù)據(jù)
router.post('/del',function(req,res,next){
    var params=req.body;
    console.log(params)
    pool.getConnection(function(err,suc){
        suc.query(delData,[params.id],function(err,result){
            if(result){
                result={
                    code:200,
                    msg:'刪除數(shù)據(jù)成功'
                }
            }
            res.json(result);
            suc.release()
        })
    })
})
//插入數(shù)據(jù)
router.post('/add', function(req, res, next) {
    var params=req.body;
    console.log(params)
    pool.getConnection(function(err,suc){
        suc.query(addData,[params.name,params.phone],function(err,result){
            if(result){ //數(shù)據(jù)庫(kù)有返回?cái)?shù)據(jù)
                result={    //返回?cái)?shù)據(jù)與格式
                    code:200,
                    msg:'新增數(shù)據(jù)成功'
                }
            }
            res.json(result);   //響應(yīng)返回json數(shù)據(jù)
            suc.release();  //關(guān)閉數(shù)據(jù)庫(kù)連接
        })
    })
});

router.get('/list', function(req, res, next) {
    pool.getConnection(function(err,suc){
        suc.query(selAll,[],function(err,result){
            if(result){ //數(shù)據(jù)庫(kù)有返回?cái)?shù)據(jù)
                result={    //返回?cái)?shù)據(jù)與格式
                    code:200,
                    msg:'獲取測(cè)試列表成功',
                    data:result
                }
            }
            res.json(result);   //響應(yīng)返回json數(shù)據(jù)
            suc.release();  //關(guān)閉數(shù)據(jù)庫(kù)連接
        })
    })
});

//響應(yīng)post
router.post('/list', function(req, res, next) {
    var id=req.body.id; //通過(guò)req的body拿到post的id
    pool.getConnection(function(err,suc){
        suc.query(selId,[id],function(err,result){
            if(result){ //數(shù)據(jù)庫(kù)有返回?cái)?shù)據(jù)
                result={    //返回?cái)?shù)據(jù)與格式
                    code:200,
                    msg:'獲取單個(gè)測(cè)試列表成功',
                    data:result
                }
            }
            res.json(result);   //響應(yīng)返回json數(shù)據(jù)
            suc.release();  //關(guān)閉數(shù)據(jù)庫(kù)連接
        })
    })
});
Vue代碼更新

html

<template>
  <div class="hello">
    <ul>
      <li>
        <el-input placeholder="請(qǐng)輸入姓名" v-model="name">
          <template slot="prepend">姓名:</template>
        </el-input>
      </li>
      <li>
        <el-input placeholder="請(qǐng)輸入電話" v-model="phone">
          <template slot="prepend">電話:</template>
        </el-input>
      </li>
      <li>
        <el-button type="primary" plain @click="add">添加</el-button>
      </li>
    </ul>
    <el-table class="user_table"
      :data="userList"
      border>
      <el-table-column
        fixed
        prop="Id"
        label="用戶ID">
      </el-table-column>
      <el-table-column
        prop="u_name"
        label="姓名">
      </el-table-column>
      <el-table-column
        prop="u_phone"
        label="電話">
      </el-table-column>
      <el-table-column
        label="操作">
        <template slot-scope="scope">
          <el-button @click="del(scope.row)" type="text" size="small">刪除</el-button>
          <el-button @click="edit(scope)" type="text" size="small">編輯</el-button>
        </template>
      </el-table-column>
    </el-table>
    <el-dialog
      title="編輯"
      :visible.sync="dialogVisible">
      <div class="update">
        <el-input placeholder="請(qǐng)輸入姓名" v-model="edit_name">
          <template slot="prepend">姓名:</template>
        </el-input>
        <el-input placeholder="請(qǐng)輸入電話" v-model="edit_phone">
          <template slot="prepend">電話:</template>
        </el-input>
      </div>
      <span slot="footer" class="dialog-footer">
        <el-button @click="dialogVisible = false">取 消</el-button>
        <el-button type="primary" @click="editY()">確 定</el-button>
      </span>
    </el-dialog>
  </div>
</template>

script

import axios from 'axios';
export default {
  name: 'HelloWorld',
  data () {
    return {
      // msg: 'Welcome to Your Vue.js App'
      name:'',
      phone:'',
      userList:[],
      dialogVisible:false,
      edit_name:'',
      edit_phone:'',
      edit_id:''
    }
  },
  mounted(){
    this.get()
  },
  methods:{
    editY(){
      var this_=this;
      axios.post('/users/edit',{
        id:this.edit_id,
        name:this.edit_name,
        phone:this.edit_phone
      }).then(function(res){
        console.log(res)
        this_.dialogVisible=false;
        this_.get()
      }).catch(function(err){
        console.log(err)
      })
    },
    edit(row){
      var this_=this,index=row.$index;
      this_.dialogVisible=true;
      var p_id=this_.userList[index].Id,
          p_name=this_.userList[index].u_name,
          p_phone=this_.userList[index].u_phone;
      this_.edit_id=p_id;
      this_.edit_name=p_name;
      this_.edit_phone=p_phone;
    },
    get(){
      var this_=this;
      axios.get('/users/list').then(function(res){
        this_.userList=res.data.data

      }).catch(function(err){
        console.log(err)
      })
    },
    add(){
      var this_=this;
      // var name=,phone=;
      axios.post('/users/add',{
        name:this.name,
        phone:this.phone
      }).then(function(res){
        console.log(res)
        this_.get()
      }).catch(function(err){
        console.log(err)
      })
    },
    del(row){
      var this_=this;
      axios.post('/users/del',{
        id:row.Id
      }).then(function(res){
        this_.get()
      }).catch(function(err){
        console.log(err)
      })
    }
  }
}

完整代碼 ↓ ↓ ↓ ↓
github地址:https://github.com/jgsrty/jianshu_node
碼云地址:https://gitee.com/RtyXmd/jianshu_node
測(cè)試代碼寫(xiě)完了,接下來(lái)會(huì)重新部署一個(gè),對(duì)node和vue代碼進(jìn)行優(yōu)化與整理,下一步增加聊天室、完善登陸與注冊(cè)(session,加密等)、評(píng)論、上傳文件圖片、爬蟲(chóng)爬取資源。。。
規(guī)劃整理前后端代碼(五)

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • ## 框架和庫(kù)的區(qū)別?> 框架(framework):一套完整的軟件設(shè)計(jì)架構(gòu)和**解決方案**。> > 庫(kù)(lib...
    Rui_bdad閱讀 3,150評(píng)論 1 4
  • 簡(jiǎn)說(shuō)Vue (組件庫(kù)) https://github.com/ElemeFE/element" 餓了么出品的VUE...
    Estrus丶閱讀 1,908評(píng)論 0 1
  • 基于Vue的一些資料 內(nèi)容 UI組件 開(kāi)發(fā)框架 實(shí)用庫(kù) 服務(wù)端 輔助工具 應(yīng)用實(shí)例 Demo示例 element★...
    嘗了又嘗閱讀 1,276評(píng)論 0 1
  • 分享歌詞: 一場(chǎng)雨 把我困在這里,你冷漠的表情 會(huì)讓我傷心,六月的雨 就是無(wú)情的你,伴隨著點(diǎn)點(diǎn)滴滴 痛擊我心里,H...
    AA黎夏夏的美好時(shí)光閱讀 435評(píng)論 0 1
  • 生活中,人們對(duì)于奇葩的人或事,總是會(huì)用一句“你以為是拍戲嗎”來(lái)表達(dá)那種夸張和不可思議。然而,事實(shí)就正應(yīng)了那...
    ZS佐神閱讀 220評(píng)論 0 2

友情鏈接更多精彩內(nèi)容