如何保存来自form_1的值,然后从form_2装回这些值?

时间:2019-07-19 22:01:43

标签: java spring-boot thymeleaf

在image_1上,当我打开它时可以看到html页面。在image_2上,我在第二个输入字段中输入了一个值,单击“发送”按钮,它进行了计算,并填写了“ T3皮革数量”和“精制后”输入字段。在image_3上,我单击“获取价格”,您可以看到它获取了价格,但其他4个值都消失了。

我的控制器: https://pastebin.com/nxsHDJBF

我想以某种方式保存这些值,然后在“ getPrices”运行后将其重新加载。

package com.albionstarterproject.controller;

import java.io.IOException;
import java.util.HashMap;
import java.util.Map;


import org.json.JSONException;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;

import com.albionstarterproject.service.GetPricesService;

@Controller
public class T4HideRefineController {


}

0 个答案:

没有答案