Home  >  Article  >  Java  >  Springboot vue test platform interface defines how to implement new front-end and back-end functions

Springboot vue test platform interface defines how to implement new front-end and back-end functions

WBOY
WBOYforward
2023-05-15 15:01:141144browse

Development continues to update

The previous section drew a rough front-end page. Today we will mainly implement the back-end interface, and then adjust the front-end and back-end to implement new functions of the interface. Preview the effect first:

Springboot vue test platform interface defines how to implement new front-end and back-end functions

1. Backend part

Add a new processing method in the ApiDefinitionController class to handle new requests from the interface:

@PostMapping("/add")
  public Result add(@RequestBody ApiDefinition request) {
      try {
          apiDefinitionService.add(request);
          return Result.success();
      } catch (Exception e) {
          return Result.fail(e.toString());
      }
  }

Correspondingly implement the add method in the service layer:

public void add(ApiDefinition request) {
      if (StringUtils.isEmpty(request.getProjectId().toString())) {
          BtException.throwException("项目id为空");
      }
      if (StringUtils.isEmpty(request.getModuleId().toString())) {
          BtException.throwException("模块id为空");
      }
      if (StringUtils.isEmpty(request.getName())) {
          BtException.throwException("接口名称为空");
      }
      request.setCreateTime(new Date());
      request.setUpdateTime(new Date());
      apiDefinitionDAO.insert(request);
  }

It is not difficult to save the implementation, and several important parameters are added to determine whether they are empty.

2. Front-end part

In the page drawn in the previous section, there are still two tabs, the rest parameter and the request body, which have not been drawn. Please complete them first.

Springboot vue test platform interface defines how to implement new front-end and back-end functions

1. rest parameters

This is mainly for requests for restful style interfaces, such as /bloomtest/project/list/1/10, at this time, the following 1 and 10 need to be retrieved by setting variables in the parameters.

The form is still the same as the previous request header and query parameters:

Springboot vue test platform interface defines how to implement new front-end and back-end functions

Correspondingly add this field:

Springboot vue test platform interface defines how to implement new front-end and back-end functions

Regarding the key here, it is required in the component. I tried to remove it, but there will be problems. I'll keep it for now. Saving it will not affect my subsequent operations.

Springboot vue test platform interface defines how to implement new front-end and back-end functions

2. Request body

The content of this request body is currently only considered for general situations and needs to be displayed in json format. I was still looking for ready-made components on github, and found a vue-json-editor.

This component supports editing. The one I used to return the display in the previous section cannot be edited.

npm install vue-json-editor --save

After installation, import it in the vue file.

Springboot vue test platform interface defines how to implement new front-end and back-end functions

#This component also supports some functions, but I only need to be able to format it. There is a demo in the author's code.

Springboot vue test platform interface defines how to implement new front-end and back-end functions

is also very simple to use in my code. Just find the place where you want to put the input box, copy the code and modify it.

Springboot vue test platform interface defines how to implement new front-end and back-end functions

v-model Two-way binding field: mode="'code'" is the default display mode, as follows

Springboot vue test platform interface defines how to implement new front-end and back-end functions

Although the function is available, I don’t like the style and color very much. I tried to modify the source code to adjust it, but it didn’t work. I’ll leave it like this for now and talk about it later.

3. Request parameters

Because my entire page is divided into many different forms, I now need a place to process them, collect the contents of these forms, and put them in one Place, used for the last interface request.

Springboot vue test platform interface defines how to implement new front-end and back-end functions

Add a new method handleSaveRequest and assign values ​​to the fields inside:

Springboot vue test platform interface defines how to implement new front-end and back-end functions

Note that there is a judgment in the method . Among these 3 tabs, whichever one I click on, the added content will be assigned to this.saveApiRequest.request:

Springboot vue test platform interface defines how to implement new front-end and back-end functions

In addition, please note that Yes, for apiHeader, request, and response, you also need to use JSON.stringify() to convert them into Json strings to facilitate back-end storage.

4. Request interface

First of all, you need to add this interface in apiDefinition.js:

Springboot vue test platform interface defines how to implement new front-end and back-end functions

Then import:

Springboot vue test platform interface defines how to implement new front-end and back-end functions

Finally implement the new interface methodsaveApi, of course, the @click="saveApi" click event on the [Save] button is indispensable.

Springboot vue test platform interface defines how to implement new front-end and back-end functions

In this saveApi method, there are several things to do:

First call the method handleSaveRequest , assign the request interface to the request parameter, and prompt the result to close the newly added dialog box to refresh the list

Springboot vue test platform interface defines how to implement new front-end and back-end functions

In this way, the new function of the interface is realized, but the module here is temporarily By default, 0 is hard-coded, and the saved interface is first stored under the top-level node. Later, a selection tree needs to be implemented here to bind specific modules.

The above is the detailed content of Springboot vue test platform interface defines how to implement new front-end and back-end functions. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete