我设法将latexrender(http://www.mayer.dial.pipex.com/tex.htm)包含到我的基于Zend Framework的新项目中,除了基于ajax的预览条和#之外,一切似乎都运行正常。 34 +#34;出于某种原因从我的公式中签名。
这是我的html片段,带有示例textarea:
<dt id="formula-label"><label for="formula" class="required">Formula:</label></dt>
<dd id="formula-element">
<textarea name="formula" id="formula" rows="5" cols="40"></textarea>
<p class="description"><span class="preview-formula"></span></p></dd>
<button name="previewtformula" id="previewformula" type="button" onclick="generatePreview('formula')">Preview</button>
这里是相应的Zend表单代码:
$formula = $this->createElement('textarea', 'formula');
$formula->setLabel('Formula:');
$formula->setRequired(true);
$formula->setAttrib('rows', 5);
$formula->setAttrib('cols', 40);
$formula->setDescription('<span class="preview-formula"></span>');
$formula->getDecorator('Description')->setEscape(false);
$this->addElement($formula);
$prevFormula = $this->createElement('button', 'preview-formula');
$prevFormula->setAttrib('onclick', "generatePreview('formula')");
$prevFormula->setLabel('Preview');
$prevFormula->removeDecorator('DtDdWrapper');
$this->addElement($prevFormula);
javascript文件:
function generatePreview(elem){
var details = $('textarea#'+elem).val();
$.ajax({
type: 'POST',
url: '/formula/preview',
async: false,
data: 'details=' + details,
success: function(responseText) {
$("span.preview-"+elem).html(responseText);
}
});
};
和我的控制器动作:
public function previewAction() {
if($this->_request->isXmlHttpRequest()) {
$this->_helper->viewRenderer->setNoRender();
$this->_helper->Layout->disableLayout();
$data = $this->_request->getPost();
$latex = new My_LatexRender();
echo nl2br($latex->latex_content($data['details']));
} else {
return $this->_redirect('/index');
}
}
就像我说一切正常,图像很好地保存到磁盘上,并且添加到数据库中的公式是完整的(有#34; +&#34;标志)但是当我预览公式时它以某种方式得到了脱离所有&#34; +&#34;例如标志
&#34; 2 + 2&#34;在数据库中保存为&#34; 2 + 2&#34;但在预览中它只是&#34; 22&#34;
不确定是否有其他字符被删除,到目前为止还没有注意到
答案 0 :(得分:0)
我找到了解决方案。我不得不改变
data: 'details=' + details,
到
data: {details: details},