本文主要是介绍location.href = ‘welcome.html‘;报错 - Completed 406 NOT_ACCEPTABLE,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
巧妙解决方案,使用服务端进行redirect即可 。
package com.aliyun.controller;import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;@Controller
public class RedirectController {@GetMapping("/redirect")public String redirectToWelcome() {return "redirect:/welcome.html";}@GetMapping("/redirect2")public String redirect2() {return "redirect:/product.html";}@GetMapping("/redirect3")public String redirect3() {return "redirect:/order.html";}
}
什么情况下适用?使用模板引擎的时候可能会用到。
我这里 用的是ssm+vue(html)需要用到,如果紧紧是普通的html、或者layui、bootstrap是不需要的
这篇关于location.href = ‘welcome.html‘;报错 - Completed 406 NOT_ACCEPTABLE的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!