SpringBoot+ajax踩的坑Error resolving template, template might not exist or might not be accessible
最近寫SpringBoot專案的時候用到了ajax
但是在我執行後報錯了,如下:
Exception processing template “/addType”: Error resolving template [/addType], template might not exist or might not be accessible by any of the configured Template Resolvers
大概意思就是找不到/type這個url
Controller方法如下
@RequestMapping("/addType1")
public void addType1(Type type){
typeService.addType(type);
}
ajax程式碼如下
<script>
function add() {
var typeadd = $("#type1-add").val();
$.ajax({
url: "/addType1",
data: {'type':typeadd},
dataType: "JSON",
method: "POST",
success: function (data) {
alert("新增成功!");
}
});
}
</script>
我尋思這也沒問題啊,但是後來百度過才發現,SpringBoot後端要想接受資料,Controller裡@Controller換成@RestController,或者在方法上加@Responsbody的註解,不然無法被識別。
相關文章
- template might not exist or might not be accessible by any of the configured Template Resolvers
- Failure is not fatal, but failure to change might be.AI
- [譯] You Might Not Need ES6
- go text/template & Consul-templateGo
- html templateHTML
- springboot無法訪問templates下的html頁面和Error resolving template “xxx“的解決方案Spring BootHTMLError
- ES 筆記十四:Index Template 和 Dynamic Template筆記Index
- c++ 模板模板引數("Template Template Parameters")C++
- [Nagios] Error: Template timman specified in contact definition could not beiOSError
- 靜默安裝Oracle建庫時報Template General Purpose does not existOracle
- Using the Template Collection to Add a Template Column in WebDataGridWeb
- go template使用Go
- BaiDu TemplateAI
- Django模板templateDjango
- Js template engineJS
- artTemplate js templateJS
- C_template
- Mendix Page Template
- ansible template
- 模板方法模式(Template)模式
- Vue template To JSXVueJS
- elasticsearch之search templateElasticsearch
- Oracle ASM Template DirectoryOracleASM
- Abstract Factory + Template = BuilderUI
- 關於Template模式模式
- ASM Disk Group TemplateASM
- [Javascript] template literal tagJavaScript
- C++之templateC++
- Vue中的template配置項Vue
- Python:Template模板字串Python字串
- ansible之template模組
- ASP.NET MVC TemplateASP.NETMVC
- Python Template 錯誤Python
- oracle controlfile template;Oracle
- 標準庫之template
- c++11-17 模板核心知識(十二)—— 模板的模板引數 Template Template ParametersC++
- c++11-17 模板核心知識(十四)—— 解析模板之依賴型模板名稱 Dependent Names of Templates(.template/->template/::template)C++
- C++開發:template,模板C++