vue+node全棧移動商城【6】-node接口配置文件

接上一節,我們如今已經有了二個接口,分別是,node

app.get('/node_a'
複製代碼

ios

app.get('/node_a'
複製代碼

之後還會有更多的接口,那麼有必要在一個單獨的地方來統一管理全部的接口。axios

在src目錄下新建一個文件:api_dev.js,代碼以下:api

const port = 5678;
const BASEURL = 'http://localhost:' + port;

const API_LIST = {
	// 查詢條件
	node_a : BASEURL + '/node_a',
	// 查詢結果
	node_b : BASEURL + '/node_b'
}

module.exports = API_LIST
複製代碼

這樣就把全部的接口都放在API_LIST對象中,並向外導出,而後在須要使用的地方,直接import導入以後,就對象.屬性的方式就能夠使用了。就像下面這樣,bash

<script>
import axios from 'axios'
import API_LIST from '@/APIList.config'

...
methods:{
  sendBtn(){
        let _val = this.$refs.inputRef.value;
        // console.log( _val )

        axios.get( API_LIST.node_a ,{
                    params:{ v_data : _val }
              });
  },
複製代碼

相關文章
相關標籤/搜索