如何在表单文本区域中添加变量
Posted
技术标签:
【中文标题】如何在表单文本区域中添加变量【英文标题】:How to add variables in a form textarea 【发布时间】:2021-11-27 06:08:08 【问题描述】:我想创建可由管理员轻松更新的自定义确认消息。
喜欢
<textarea>You can contact contact_name located at contact_place…</textarea>
contact_name 和 contact_place 是需要填写在同一个表格中的字段,并且都是必填字段。
容易管理吗?
【问题讨论】:
不要认为您可以使用 php 实现这一目标。如果理解正确,您希望在表格中填写相应字段后即时填写contact_name 和contact_place。对吗? 不完全是。例如,在我的 view() 中,我想识别 contact_name 和 contact_place 并用适当的字段动态替换它们,例如 event->name 和 event->place。 如果在生成表单时变量中有数据,您可以将其粘贴到 html 中,如下所示:<textarea>You can contact <?= $event->name?> located at <?= $event->place ?></textarea>
。还是使用<?= $this->Form->control('textarea_field_name') ?>
生成表单?
【参考方案1】:
将带有占位符的文本字符串保存在 db 中,然后在 custom Helper 或实体 virtual fields
中使用 str_replace return str_replace(
[
'contact_name', // placeholders
'contact_place',
'email',
],
[
$contact->name, // inputs
$contact->place,
$contact->email,
],
// load template string from db
// You can contact contact_name located at contact_place…
$admin->template
);
【讨论】:
以上是关于如何在表单文本区域中添加变量的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 AngularJs 从输入或文本区域中删除特殊字符?