如何使Toast编辑器显示存储在DB中的HTML标签而不显示html标签?

时间:2019-05-31 01:26:08

标签: html

我正在使用Toast编辑器库,我想在td或textarea中显示文本。例如,如果

hi存储在数据库中,则它也将在td标记中显示为

hi文本。

  1. 单击帖子,将帖子编号作为参数传递。
  2. 通过查询获取标题,作者,内容,日期等信息。

@RequestMapping(value = "/noticeView", params = { "num" }, method = RequestMethod.GET)
    	public String noticeView(@RequestParam("num") Integer num, Model model)
    	{
    		Notice notice = newsService.selectNoticeDetail(num);
    		model.addAttribute("notice", notice);
    	
    		return "news/noticeView";
    	}
<form id="writeForm" action="" method="POST">
   <input type="hidden" name="num" id="num" th:value="${num}"/>
   	<div id="sb-nform">
     	<fieldset>
    		<table class="form_tbl">
    			<tbody>
    				<tr>
    					<th th:text="${notice.title}"></th>
    				</tr>
    				<tr>
         				<td th:text="${notice.contents}"></td>
    	 	  		</tr>
      			</tbody>
    		</table>
    	</fieldset>
        </div>
    </form>

0 个答案:

没有答案