vue接收网络请求数据类型配置(vue中对接Graphql接口的实现示例)
vue接收网络请求数据类型配置
vue中对接Graphql接口的实现示例说明: 本文是本人正在搞nestjs+graphql+serverless训练营中对Graphql讲解的基础知识点,可能有点前后没对接上,文中提到的Graphql授权也是下小节介绍的
一、对原来的Express返回Graphql项目修改本章节使用的代码是express返回Graphql的代码,在使用前要先对代码进行基本的配置,比如处理跨域问题(Graphql本质也是发送一个http请求,既然是这样在vue项目中自然存在跨域的问题,需要先处理)
1、安装跨域的包,并且配置中间件
npm install cors
const cors = require('cors'); // 处理跨域请求 app.use(cors());
2、配置获取请求体的中间件
// 处理请求 app.use(express.json());//express.json=bodyParser.json app.use(express.urlencoded({ extended: true }));
1、参考文档地址
2、安装依赖包
npm install --save vue-apollo graphql apollo-boost graphql-tag
3、在 src/main.js中引入 apollo-boost模块并实例化 ApolloClient
import ApolloClient from 'apollo-boost' ... const apolloClient = new ApolloClient({ // 你需要在这里使用绝对路径,这里就不区分环境开发了 uri: 'http://localhost:8000/graphql', }); ...
4、在 src/main.js 配置 vue-apollo 插件
import VueApollo from 'vue-apollo' Vue.use(VueApollo);
5、创建Apollo provider提供者,并且挂载到应用中
import Vue from 'vue' import App from './App.vue' import ApolloClient from 'apollo-boost' import VueApollo from 'vue-apollo' Vue.use(VueApollo); Vue.config.productionTip = false const apolloClient = new ApolloClient({ // 你需要在这里使用绝对路径 uri: 'http://localhost:8000/graphql', }); const apolloProvider = new VueApollo({ defaultClient: apolloClient, }) new Vue({ render: h => h(App), // 挂载到应用 apolloProvider, }).$mount('#app')
1、使用apollo页面进来就查询数据
根据官方的介绍,只用将apolloProvider挂载到了vue中,在vue的钩子函数中就会多一个属性apollo
<template> <li class="about"> {{accountList}} </li> </template>
import gql from 'graphql-tag'; export default { name: 'About', apollo: { accountList: gql`query { accountList { id username password } }` }, }
2、apollo中使用函数来调用
import gql from 'graphql-tag'; export default { apollo: { accountList () { return { query: gql`query { accountList{ id username password created_at } }`, } }, } }
3、点击按钮获取数据
import gql from 'graphql-tag'; // 定义查询的schema const accountListGql = gql`{ accountList { id username password } }`; export default { data() { return { tableList: [], } }, methods: { getTableData() { this.$apollo.addSmartQuery('accountList', { query: accountListGql, result(response) { console.log(response); const {accountList} = response.data; this.tableList = accountList; }, error(error) { console.log('请求失败', error); } }) } } }
上面的方式也可以换成下面的写法,如果请求的业务不复杂可以这样写,如果复杂就根据上面的方式单独抽取一个schema
... getTableData() { this.$apollo.addSmartQuery('accountList', { query: gql`{ accountList{ id username password } }`, result(response) { console.log(response); const {accountList} = response.data; this.tableList = accountList; }, error(error) { console.log('请求失败', error); } }) } ...
4、传递参数的方式请求数据
handleClick (rowData) { this.$apollo.addSmartQuery('account', { query: gql` query($id: ID!) { account(id: $id) { id username password } } `, variables: { id: rowData.id, }, result (response) { console.log('查询单条数据', response.data); } }) }
1、以上的方法可以查询数据,但是不能重复点击按钮,否则就会出现错误
2、改进版查询数据,直接使用query方法来查询
getTableData () { this.$apollo.query({ query: gql`{ accountList{ id username password } }`, }).then(response => { console.log(response); const { accountList } = response.data; this.tableList =accountList; }) }
具体实现代码见下面
onSubmit () { this.$refs.form.validate(async (valid) => { if (valid) { console.log(this.form); const result = await this.$apollo.mutate({ mutation: gql` mutation addAccount($username: String!, $password: String!) { addAccount(username:$username,password: $password) } `, variables: { username: this.form.username, password: this.form.password, } }); console.log('更新结果', result); } else { // this.$message.error('请添加数据') return false; } }) }
1、打开浏览器控制台点击请求Graphql接口的时候你会发现有下面三个参数
2、如果同一个数据或者说variables的值没变动的时候,是不会向后端发起请求的
3、opertionName是什么呢,我相信很多人会有疑问,看到下面两个图,我相信大家就不会疑惑了
这个操作名称就是在你使用query或者mutation的时候的名字,这个命名可以随意命名,一般建议和后端的API操作名保持一致。
这个操作名有什么用呢?我们观察Graphql发送的请求都是同一个url地址,我们在传统的Restful API的时候,我们做登录鉴权或者获取url的时候会就需要获取当前请求的地址,对于Graphql来说,这个操作名也类似这个功能,区分是哪个API来请求的。
在传统的Restful api请求的时候,我们更倾向于在项目中创建一个services的文件夹来将api请求都放到一起,便于管理,很少将请求都写到vue页面中去的。在graphql中也可以如此操作,只是方式不一样。
1、在项目中创建一个graphql的文件夹,里面存放的类似Restful api的接口请求
2、在src/graphql/accountList.graphql创建关于查询的接口
query AccountList { accountList { id username password } }
3、在vue中引入
import AccountList from './../graphql/accountList.graphql'; ... methods: { async initTableData () { this.tableList = []; this.loading = true; const { data, loading } = await this.$apollo.query({ query: AccountList, }); console.log(data, '请求返回数据'); this.loading = loading; this.tableList = data.accountList; }, } ...
4、不出意外的话会直接报错,因为vue不能直接识别graphql文件,我们需要使用webpack配置对应加载graphql的loader
5、在项目根目录下创建一个vue.config.js配置loader
module.exports = { configureWebpack: (config) => { config.module.rules.push({ test: /\.(graphql|gql)$/, exclude: /node_modules/, loader: 'graphql-tag/loader' }) }, };
6、处理数据不刷新
上面每次新增数据、删除数据、修改数据,虽然我们调用了initTableData,但是Graphql,并没有到后端,这是因为缓存的问题,需要在查询的时候添加红框圈住的字段就可以做到没次调用的时候,重新更新数据
fetchPolicy: "no-cache",
7、本章节整体的效果图
8、本小节的代码代码下载地址
到此这篇关于vue中对接Graphql接口的实现示例的文章就介绍到这了,更多相关vue对接Graphql接口 内容请搜索开心学习网以前的文章或继续浏览下面的相关文章希望大家以后多多支持开心学习网!
- vue查询条件生成工具(vue实现四级导航及验证码的方法实例)
- vue过滤器filters怎么用(如何使用vue过滤器filter)
- vue父组件怎么用子组件的数据(Vue使用v-model封装el-pagination组件的全过程)
- dockernginx服务器教程(Docker镜像+nginx 部署 vue 项目的方法)
- vueelementui表格操作(Vue组件库ElementUI实现表格列表分页效果)
- vue 中后台管理系统(Vue实现学生管理功能)
- vue树形表格内容太长(VUE 无限层级树形数据结构显示的实现)
- vue接收网络请求数据类型配置(vue中对接Graphql接口的实现示例)
- vue源码系列教程(vue使用引用库中的方法附源码)
- vue怎么编写规则(vue使用节流函数的踩坑实例指南)
- vue数据改变页面不刷新(vue列表数据删除后主动刷新页面及刷新方法详解)
- vue身份验证(详解vue身份认证管理和租户管理)
- vue如何导入excel(Vue实现导入Excel功能步骤详解)
- vue功能测试和生产环境切换(vue 单元测试的推荐插件和使用示例)
- vue自定义组件定义事件(基于Vue实现自定义组件的方式引入图标)
- vue 单文件组件(vue实现一个单文件组件的完整过程记录)
- 做技术难吗(技术难不难)
- 林心如是谁(林心如是谁演的)
- 泰国安全吗(泰国安全吗2023)
- 菲律宾安全吗(菲律宾安全吗)
- 泰国旅游攻略(泰国旅游攻略必去景点)
- 数字藏品市场有多乱 周杰伦丢了 一只猴 ,损失超300万(数字藏品市场有多乱)
热门推荐
- nginx django部署(uwsgi+nginx代理Django无法访问静态资源的解决)
- dedecms关闭站点(dedecms 会员登录或者退出直接跳转到首页的修改方法)
- 搬瓦工用哪个端口号(搬瓦工bandwagon服务器购买及初步环境搭建图文教程)
- python3字符串格式化怎么操作(python3实现字符串操作的实例代码)
- 数据库索引如何使用
- mysql 安装阿里云(详解如何在阿里云服务器安装Mysql数据库)
- sql server中有哪几种锁定模式(SQL Server三种锁定模式的知识讲解)
- mybatis 分页查询配置(mybatis-plus分页传入参数后sql where条件没有limit分页信息操作)
- 移动端touch事件
- docker-compose命令(docker-compose教程之安装使用和快速入门)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9