嗨,我正在为网站使用 Code Igniter 框架,
这是一个技术文章网站,我正在添加不同语言的文章。
在那里,当我将文章与代码一起保存时,例如它已正确插入数据库中。
<pre class="prettyprint" id="html">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
<head>
<meta name="copyright" content="Atos Origin" />
<title>Select Option Demo Using Tapestry</title>
</head>
<body>
<h1>Payment Card Demo</h1>
<form t:type="form" t:id="cardForm" id="cardForm" method="post">
<t:label for="cardTypes"/>
<t:select t:id="cardTypes"/>
</form>
</body>
</html>
</pre>
但是当我从数据库中检索它进行编辑时,它会转换为实际代码。
<pre class="prettyprint" id="html">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
<head>
<meta name="copyright" content="Atos Origin" />
<title>Select Option Demo Using Tapestry</title>
</head>
<body>
<h1>Payment Card Demo</h1>
<form t:type="form" t:id="cardForm" id="cardForm" method="post">
<t:label for="cardTypes"/>
<t:select t:id="cardTypes"/>
</form>
</body>
</html>
</pre>
但是不想要这样的转换,那么有什么解决办法吗?