将 smarty 模板返回到 html 文本框

发布于 2024-11-30 22:27:46 字数 123 浏览 3 评论 0原文

我想使用 smarty 将一些 html 返回到网站后端的文本框。我已经在使用 smarty 来渲染后端本身。

最好的方法是什么?

我以通常的方式将单个数组分配给 smarty,但不确定如何返回模板。

I want to use smarty to return some html to a text box in the back end of my web site. I am already using smarty to render the backend itself.

Whats the best way to do this?

I'm assigning a single array to smarty in the usual way, but not sure how then to return the template.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朦胧时间 2024-12-07 22:27:46

要使用 smarty 使用来获取模板的内容:

$oSmartyObject->fetch('template.tpl');

它将使用分配的任何变量,并且您可以根据需要使用内容。

To fetch the content of an template with smarty use:

$oSmartyObject->fetch('template.tpl');

It will use any variables assigned, and you can use the content as you wish.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文