done
This commit is contained in:
parent
4fb650e3d1
commit
04f358067f
@ -10,17 +10,17 @@ import javax.servlet.http.HttpServletResponse;
|
|||||||
@RestController
|
@RestController
|
||||||
public class UserController {
|
public class UserController {
|
||||||
|
|
||||||
@GetMapping("/sum")
|
@GetMapping("/sub")
|
||||||
public String workSum(HttpServletResponse response, @RequestParam Integer num1, @RequestParam Integer num2){
|
public String workSub(HttpServletResponse response, @RequestParam String str1, @RequestParam String str2){
|
||||||
response.addHeader("Access-Control-Allow-Origin", "*");
|
response.addHeader("Access-Control-Allow-Origin", "*");
|
||||||
return String.format("Result = %s", num1 + num2);
|
return str1.substring(Integer.parseInt(str2));
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/split")
|
@GetMapping("/split")
|
||||||
public String workSplit(HttpServletResponse response, @RequestParam String str1, @RequestParam String str2){
|
public String workSplit(HttpServletResponse response, @RequestParam String str1, @RequestParam String str2){
|
||||||
response.addHeader("Access-Control-Allow-Origin", "*");
|
response.addHeader("Access-Control-Allow-Origin", "*");
|
||||||
String[] array = str1.split(str2);
|
String[] array = str1.split(str2);
|
||||||
return String.format("Result = %s", String.join(" ", array));
|
return String.format(String.join(" ", array));
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/uplow")
|
@GetMapping("/uplow")
|
||||||
@ -29,9 +29,9 @@ public class UserController {
|
|||||||
return String.format(str1.toUpperCase() + str2.toLowerCase());
|
return String.format(str1.toUpperCase() + str2.toLowerCase());
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/avg")
|
@GetMapping("/concat")
|
||||||
public String workAvarage(HttpServletResponse response, @RequestParam Integer num1, @RequestParam Integer num2){
|
public String workCompare(HttpServletResponse response, @RequestParam String str1, @RequestParam String str2){
|
||||||
response.addHeader("Access-Control-Allow-Origin", "*");
|
response.addHeader("Access-Control-Allow-Origin", "*");
|
||||||
return String.format("Min = %s Max = %s Avg = %s", Math.min(num1, num2), Math.max(num1, num2), (num1 + num2) / 2);
|
return String.format(str1.concat(str2));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,8 +16,11 @@ export default{
|
|||||||
},
|
},
|
||||||
methods:{
|
methods:{
|
||||||
GetRepuest(){
|
GetRepuest(){
|
||||||
console.log("http://localhost:8080/" + this.action + "?" + this.str_1 + "&" + this.str_2)
|
if (this.action.length == 0 || this.str_1.length == 0 || this.str_2.length == 0){
|
||||||
fetch("http://localhost:8080/" + this.action + "?" + this.str_1 + "&" + this.str_2)
|
console.warn("Invalid input to fetch!");
|
||||||
|
}
|
||||||
|
console.log("http://localhost:8080/" + this.action + "?str1=" + this.str_1 + "&str2=" + this.str_2)
|
||||||
|
fetch("http://localhost:8080/" + this.action + "?str1=" + this.str_1 + "&str2=" + this.str_2)
|
||||||
.then(res => res.text())
|
.then(res => res.text())
|
||||||
.then(res => {
|
.then(res => {
|
||||||
this.result = res;
|
this.result = res;
|
||||||
@ -31,22 +34,24 @@ export default{
|
|||||||
<Header></Header>
|
<Header></Header>
|
||||||
<main class="container" style="margin-top: 50pt;">
|
<main class="container" style="margin-top: 50pt;">
|
||||||
<div class="input-group mb-2 my-5">
|
<div class="input-group mb-2 my-5">
|
||||||
<span class="input-group-text bg-primary text-white" id="basic-addon1"><strong>Действие</strong></span>
|
<span class="input-group-text bg-primary text-white" id="basic-addon1"><strong>Действие:</strong></span>
|
||||||
<input type="text" class="form-control" placeholder="Выберите действие" v-model="action">
|
<input type="text" class="form-control" placeholder="Выберите действие" v-model="action">
|
||||||
</div>
|
</div>
|
||||||
<div class="input-group mb-2">
|
<div class="input-group mb-2">
|
||||||
<span class="input-group-text bg-primary text-white" id="basic-addon1"><strong>Строка#01</strong></span>
|
<span class="input-group-text bg-primary text-white" id="basic-addon1"><strong>Строка№1:</strong></span>
|
||||||
<input type="text" class="form-control" placeholder="Введите превую строку" v-model="str_1">
|
<input type="text" class="form-control" placeholder="Введите превую строку" v-model="str_1">
|
||||||
</div>
|
</div>
|
||||||
<div class="input-group mb-2">
|
<div class="input-group mb-2">
|
||||||
<span class="input-group-text bg-primary text-white" id="basic-addon1"><strong>Строка#02</strong></span>
|
<span class="input-group-text bg-primary text-white" id="basic-addon1"><strong>Строка№2:</strong></span>
|
||||||
<input type="text" class="form-control" placeholder="Введите вторую строку" v-model="str_2">
|
<input type="text" class="form-control" placeholder="Введите вторую строку" v-model="str_2">
|
||||||
</div>
|
</div>
|
||||||
<div class="input-group mb-2">
|
<div class="input-group mb-2">
|
||||||
<span class="input-group-text bg-success text-white" id="basic-addon1"><strong>Вывод:</strong></span>
|
<span class="input-group-text bg-success text-white" id="basic-addon1"><strong>Вывод:</strong></span>
|
||||||
<input type="text" class="form-control" placeholder="Выводит рузультат здесь" v-model="result">
|
<input type="text" class="form-control" placeholder="Выводит рузультат здесь" v-model="result" readonly>
|
||||||
|
</div>
|
||||||
|
<div class="mb-2 d-flex justify-content-center">
|
||||||
|
<button type="submit" class="btn btn-success" @click.prevent="GetRepuest"><strong>GET</strong></button>
|
||||||
</div>
|
</div>
|
||||||
<button type="submit" class="btn btn-success" @click.prevent="GetRepuest"><strong>GET</strong></button>
|
|
||||||
</main>
|
</main>
|
||||||
<Footer></Footer>
|
<Footer></Footer>
|
||||||
</template>
|
</template>
|
||||||
|
Loading…
Reference in New Issue
Block a user