{"id":8192,"date":"2023-11-28T20:18:20","date_gmt":"2023-11-28T12:18:20","guid":{"rendered":"https:\/\/wx.kaifamiao.info\/?p=8192"},"modified":"2023-12-02T21:52:57","modified_gmt":"2023-12-02T13:52:57","slug":"vue-zhongaxios-ji-an-zhuang","status":"publish","type":"post","link":"http:\/\/wx.kaifamiao.info\/index.php\/2023\/11\/28\/vue-zhongaxios-ji-an-zhuang\/","title":{"rendered":"Vue \u4e2d axios \u53ca\u5b89\u88c5\uff1f"},"content":{"rendered":"<p>\u5728 Vue \u4e2d\u4f7f\u7528 Axios \u8fdb\u884c HTTP \u8bf7\u6c42\u901a\u5e38\u9700\u8981\u5148\u5b89\u88c5 Axios \u5e93\uff0c\u7136\u540e\u5728 Vue \u9879\u76ee\u4e2d\u8fdb\u884c\u914d\u7f6e\u548c\u4f7f\u7528\u3002<\/p>\n<h3><a id=\"%E5%AE%89%E8%A3%85axios%EF%BC%9A\" class=\"anchor\" aria-hidden=\"true\"><span class=\"octicon octicon-link\"><\/span><\/a>\u5b89\u88c5 Axios\uff1a<\/h3>\n<p>\u901a\u8fc7 npm \u6216\u8005 yarn \u5b89\u88c5 Axios\uff1a<\/p>\n<p>\u4f7f\u7528 npm\uff1a<\/p>\n<pre><code class=\"language-bash\">npm install axios --save\n<\/code><\/pre>\n<p>\u4f7f\u7528 yarn\uff1a<\/p>\n<pre><code class=\"language-bash\">yarn add axios\n<\/code><\/pre>\n<h3><a id=\"%E5%9C%A8vue%E9%A1%B9%E7%9B%AE%E4%B8%AD%E4%BD%BF%E7%94%A8-axios%EF%BC%9A\" class=\"anchor\" aria-hidden=\"true\"><span class=\"octicon octicon-link\"><\/span><\/a>\u5728 Vue \u9879\u76ee\u4e2d\u4f7f\u7528 Axios\uff1a<\/h3>\n<p>\u5728 Vue \u9879\u76ee\u4e2d\u5f15\u5165 Axios\uff0c\u5e76\u8fdb\u884c\u57fa\u672c\u7684\u914d\u7f6e\uff0c\u6bd4\u5982\u8bbe\u7f6e\u57fa\u672c\u7684\u8bf7\u6c42 URL\u3001\u62e6\u622a\u5668\u7b49\uff1a<\/p>\n<pre><code class=\"language-javascript\">\/\/ main.js \u6216\u8005\u67d0\u4e2a\u9700\u8981\u5168\u5c40\u4f7f\u7528\u7684\u5730\u65b9\nimport Vue from 'vue';\nimport axios from 'axios';\n\n\/\/ \u8bbe\u7f6e\u57fa\u672c\u7684\u8bf7\u6c42 URL\naxios.defaults.baseURL = 'https:\/\/api.example.com';\n\n\/\/ \u5c06 Axios \u6302\u8f7d\u5230 Vue \u5b9e\u4f8b\u7684\u539f\u578b\u4e0a\uff0c\u65b9\u4fbf\u5728\u7ec4\u4ef6\u4e2d\u4f7f\u7528\nVue.prototype.<span class=\"katex math inline\">http = axios;\n\n\/\/ \u4f7f\u7528\u62e6\u622a\u5668\u7b49\u914d\u7f6e\naxios.interceptors.request.use(config =&gt; {\n  \/\/ \u8bf7\u6c42\u53d1\u9001\u524d\u7684\u914d\u7f6e\u5904\u7406\uff0c\u6bd4\u5982\u6dfb\u52a0 token \u7b49\n  return config;\n}, error =&gt; {\n  return Promise.reject(error);\n});\n\naxios.interceptors.response.use(response =&gt; {\n  \/\/ \u54cd\u5e94\u6570\u636e\u5904\u7406\uff0c\u6bd4\u5982\u5904\u7406\u8fd4\u56de\u7684\u6570\u636e\u3001\u9519\u8bef\u5904\u7406\u7b49\n  return response;\n}, error =&gt; {\n  return Promise.reject(error);\n});\n\n\/\/ \u5728\u7ec4\u4ef6\u4e2d\u4f7f\u7528\nexport default {\n  methods: {\n    fetchData() {\n      this.<\/span>http.get('\/data')\n        .then(response =&gt; {\n          \/\/ \u5904\u7406\u54cd\u5e94\u6570\u636e\n        })\n        .catch(error =&gt; {\n          \/\/ \u5904\u7406\u9519\u8bef\n        });\n    }\n  }\n};\n<\/code><\/pre>\n<p>\u4ee5\u4e0a\u662f\u4e00\u4e2a\u7b80\u5355\u7684\u793a\u4f8b\uff0c\u5f15\u5165 Axios \u5e76\u5728 Vue \u9879\u76ee\u4e2d\u8fdb\u884c\u4e86\u57fa\u672c\u7684\u914d\u7f6e\uff0c\u4f7f\u5176\u80fd\u591f\u53d1\u9001 HTTP \u8bf7\u6c42\uff0c\u5e76\u5728\u7ec4\u4ef6\u4e2d\u4f7f\u7528\u3002\u4f60\u53ef\u4ee5\u6839\u636e\u5b9e\u9645\u9700\u6c42\u8fdb\u884c\u8fdb\u4e00\u6b65\u7684\u914d\u7f6e\u548c\u4f7f\u7528\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5728 Vue \u4e2d\u4f7f\u7528 Axios \u8fdb\u884c HTTP \u8bf7\u6c42\u901a\u5e38\u9700\u8981\u5148\u5b89\u88c5 Axios \u5e93\uff0c\u7136\u540e\u5728 Vue \u9879\u76ee\u4e2d\u8fdb\u884c [&hellip;]<\/p>\n","protected":false},"author":11,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[114],"tags":[],"class_list":["post-8192","post","type-post","status-publish","format-standard","hentry","category-vue"],"_links":{"self":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts\/8192","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/comments?post=8192"}],"version-history":[{"count":2,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts\/8192\/revisions"}],"predecessor-version":[{"id":14053,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts\/8192\/revisions\/14053"}],"wp:attachment":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/media?parent=8192"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/categories?post=8192"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/tags?post=8192"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}