之前用thymeleaf一直只是在頁面載入的時候利用thymeleaf的標籤取值,而ajax載入的資料則需要使用js新增到html中,那我們如果需要動態得區域性重新整理資料,該如何操作呢?
方法:使用th:fragment fragment可以理解為乙個**模板,thymeleaf可以根據這個進行定位。
html**
文章分類:
ajax請求
$('#btn').click(function ()
})})
後台請求
public string aaa(model model)
注意返回值是write_article::article_type
,write_article
是檢視名稱(html檔名稱),article_type
是fragment的名稱。這樣就只是填充article_type
的資料,而不用重新整理整個頁面,達到動態重新整理的目的。
也可以使用load函式進行區域性重新整理
Android 區域性重新整理
需求 有的lcd 是支援區域性重新整理的,所謂區域性重新整理也就是說,如果 ui層有更新,驅動才會去重新整理 framebuffer 的區域,並且只需要重新整理這塊髒的區域,這需要 lcd本身有乙個快取,能夠保持 framebuffer 上一幀的資料 android 2.1架構 android 本身...
頁面區域性重新整理
場景 頁面a使用第三方外掛程式c,如果頁面重新整理,c會重新初始化並且無法記錄之前的資訊。現在希望頁面的主要功能區b重新整理,但是c的資訊不要丟失。解決方案 b採用iframe方式引入到a中,b重新整理採用self.location.reload 這時b內容重新整理,而a中除了b以外的其他內容保持不...
RecycleView區域性重新整理
向指定位置插入item public final void notifyiteminserted int position 移除指定位置item public final void notifyitemremoved int position 更新指定位置item public final void...