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
- SpringBoot+Thyemleaf開發環境正常,打jar包發到伺服器就報錯Template might not exist or might not ..Spring Boot開發環境JAR伺服器
- springboot無法訪問templates下的html頁面和Error resolving template “xxx“的解決方案Spring BootHTMLError
- [譯] You Might Not Need ES6
- A way to represent that more realistically might be forcing users
- go text/template & Consul-templateGo
- 靜默安裝Oracle建庫時報Template General Purpose does not existOracle
- template0 的 age 問題. vacuum template0
- ansible template
- c++ 模板模板引數("Template Template Parameters")C++
- ES 筆記十四:Index Template 和 Dynamic Template筆記Index
- Vue template To JSXVueJS
- C_template
- Mendix Page Template
- go template使用Go
- 【雜談】Starter Template
- 模板方法模式(Template)模式
- C++之templateC++
- [Javascript] HTML Template InterpolationJavaScriptHTML
- [Javascript] template literal tagJavaScript
- elasticsearch之search templateElasticsearch
- Python:Template模板字串Python字串
- Vue中的template配置項Vue
- c++11-17 模板核心知識(十二)—— 模板的模板引數 Template Template ParametersC++
- c++11-17 模板核心知識(十四)—— 解析模板之依賴型模板名稱 Dependent Names of Templates(.template/->template/::template)C++
- 標準庫之template
- 一個簡單template engine
- C++開發:template,模板C++
- WPF 資料模板Data Template
- 0115 springboot template方式操作mongodbSpring BootMongoDB
- 聊聊Vue.js的template編譯Vue.js編譯
- go 模板(template)的常用基本語法Go
- vue3 template 特殊的標籤Vue
- ABAP,Java,JavaScript裡的字串模板String TemplateJavaScript字串
- ajax配合art-template模板引擎的使用
- 膨脹的template class成員函式函式
- JavaScript 有趣的冷知識:tagged template literalsJavaScript
- 小程式 template 模版使用方法