Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to call simulated data in Vue Framework

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "how to call simulation data in Vue framework". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "how to call simulation data in Vue framework".

1. Frame structure

Mock is the simulation data folder, which contains index.js, which contains the simulated interface data: as follows

Const Mock = require ("mockjs"); const {param2Obj} = require (". / utils"); const user = require (". / user"); / / call mode const mocks = [. User]; function mockXHR () {/ mock patch / / https://github.com/nuysoft/Mock/issues/300 Mock.XHR.prototype.proxy_send = Mock.XHR.prototype.send Mock.XHR.prototype.send = function () {if (this.custom.xhr) {this.custom.xhr.withCredentials = this.withCredentials | | false; if (this.responseType) {this.custom.xhr.responseType = this.responseType;}} this.proxy_send (.minutes);} Function XHR2ExpressReqWrap (respond) {return function (options) {let result = null; if (respond instanceof Function) {const {body, type, url} = options / / https://expressjs.com/en/4x/api.html#req result = respond ({method: type, body: JSON.parse (body), query: param2Obj (url),});} else {result = respond } return Mock.mock (result);};} for (const i of mocks) {Mock.mock (new RegExp (i.url), i.type | | "get", XHR2ExpressReqWrap (i.response));} module.exports = {mocks, mockXHR,}

2. Call in api: as shown in the figure

Then you can successfully request the data.

At this point, I believe you have a deeper understanding of "how to call simulation data in the Vue framework". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report