我使用cake bake命令创建了一个app,一个表使用text作为字段类型。
一切顺利,为该领域生成了一个textarea,它按预期工作。 我保存了一些条目,查看了一些条目。
我意识到在使用编辑时,一个条目没有填充textarea。它在视图中正确显示,但是当编辑数据不在textarea中并保存时会导致所有信息丢失。
这发生在一张普通的烘焙桌上。
这是我用它的值textarea:
Morning Christopher,
请您在Citano向我发送电子邮件帐户的密码,因为我们需要它来重置我的黑莓手机电子邮件帐户。
·此事需要你的紧急回应。
杰克克鲁格 Citano经销商。
是的,那里有一个奇怪的角色,我认为这是一句话。
这是一个框架错误,后来修复了吗? 我在1.3.10和1.3.8上进行了测试。
任何帮助都将不胜感激。
修改
以下是标准的烘焙视图“edit.ctp”:
<div class="tickets form">
<?php echo $this->Form->create('Ticket', array('type'=>'file'));?>
<fieldset>
<legend><?php __('Edit Ticket'); ?></legend>
<?php
echo $this->Form->input('Ticket.id');
echo $this->Form->input('Ticket.name', array('label' => 'Ticket name'));
echo $this->Form->input('Ticket.details'); # Problem textarea not populating
echo $this->Form->input('Ticket.user_id', array('label' => 'Assigned to'));
echo $this->Form->input('Ticket.queue_id');
echo $this->Form->input('Ticket.client_id', array('options' => $clients,'default' => $defaultClient,'empty' => 'None'));
echo $this->Form->input('Ticket.status', array('options' => $ticketStatus));
echo $this->Form->input('Ticket.accepted', array('type' => 'checkbox'));
echo $this->Form->input('Ticket.linkedticketid', array('options' => $linkTickets,'empty' => 'None','style' => 'width:100%;','label' => 'Linked ticket'));
echo $this->Form->input('Ticket.due_date');
echo $this->Form->file('attachment');
echo $this->Form->input('email', array('label' => 'Additional email to mailing list'));
?>
</fieldset>
<?php echo $this->Form->end(__('Submit', true));?>
</div>
<div class="actions">
<h3><?php __('Actions'); ?></h3>
<ul>
<li><?php echo $this->Html->link(__('View Ticket', true), array('action' => 'view', $this->Form->value('Ticket.id'))); ?> </li>
<li><?php echo $this->Html->link(__('List Ticket', true), array('action' => 'index')); ?> </li>
</ul>
</div>
这是控制器:
function edit($id = null) {
if (!$id && empty($this->data)) {
$this->Session->setFlash(__('Invalid ticket', true));
$this->redirect(array('action' => 'index'));
}
if (!empty($this->data)) {
if ($this->Ticket->save($this->data)) {
$this->Session->setFlash(__('The Ticket has been saved', true));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('The Ticket could not be saved. Please, try again.', true));
}
}
if (empty($this->data)) {
$this->data = $this->Ticket->read(null, $id);
}
}
如前所述,数据已经添加,数据没有任何问题,但编辑textarea时并不总是填充现有数据,而其余字段总是填充现有数据。 / p>
在edit.ctp中调试数据
Array
(
[Ticket] => Array
(
[id] => 281
[linkedticketid] =>
[user_id] => 1
[queue_id] => 4
[name] => password
[details] => Morning Christopher,
Please can you send me the password for our email accounts at Citano as we need it to reset my directors email account for his blackberry.
� Your urgent response is required in this matter.
Jaques Kruger
Citano Distributors.
[status] => 0
[accepted] => 0
[due_date] => 2011-11-12
[mailedtech] => 1
[uuid] => 34b12707-0b87-11e1-97b4-001e90d15e95
[created] =>
[modified] => 2011-11-10 12:48:51
)
[User] => Array
(
[id] => 1
[group_id] => 1
[name] => Christopher
[username] => Nightwolf
[password] => 8be1083780671a3b3541ff82r161d3d55a4e5d79
[email] => Christopher@example.com
[created] => 2011-09-05 13:30:56
[modified] => 2011-09-05 13:31:34
)
[Queue] => Array
(
[id] => 4
[name] => Christopher
[rank] => 20
[created] => 2011-09-05 13:58:40
[modified] => 2011-09-05 13:58:40
)
[Task] => Array
(
)
[Ticketforclient] => Array
(
[0] => Array
(
[id] => 95
[ticket_id] => 281
[client_id] =>
[created] => 2011-11-10 12:34:45
[modified] => 2011-11-10 12:48:51
)
)
[Ticketnote] => Array
(
)
[Ticketsinqueue] => Array
(
[0] => Array
(
[id] => 67
[ticket_id] => 281
[queue_id] => 4
[created] =>
[modified] => 2011-11-10 12:48:50
)
)
[Activitylog] => Array
(
)
[Billinginfo] => Array
(
)
[Attachment] => Array
(
)
[Ticketmailinglist] => Array
(
[0] => Array
(
[id] => 11
[ticket_id] => 281
[emailaddress] => christopher@example.com
[originalsender] => 0
)
)
)
答案 0 :(得分:7)
确保~/app/config/core.php
使用此功能:
Configure::write('App.encoding', 'UTF-8');
布局部分
<?php echo $html->charset(); ?>
数据库配置
class DATABASE_CONFIG {
public $default = array(
...
'encoding' => 'utf8'
);
}
阅读本文
答案 1 :(得分:1)
根据我的说法,这是一种不好的方式,但这是我知道的唯一方法。
由于数据库中的奇怪价值,cakephp的textarea formhelper似乎排除了textarea内容。 这是表单助手:
echo $this->Form->input('Ticket.details');
这是它应该生成的html:
echo '<textarea name="data[Ticket][details]" cols="30" rows="6" id="TicketDetails">'.$ticketDetail.'</textarea>';
$ ticketDetail是数据库中的内容。
通过使用写出的html,一切都很完美。
答案 2 :(得分:0)
� Your urgent response is required in this matter.
如果它也在调试中出现,那么人们会认为这是你的数据有问题。将源文本粘贴到记事本或类似文本中,然后再次尝试查看是否清除了问题字符。 =)
修改的
如果您无法控制输入的字符,则可能需要考虑将用户输入的文本编码为已知格式,然后使用正则表达式将可接受的字符列入白名单。这样可以防止奇怪的角色永久偷偷摸摸。 =)
答案 3 :(得分:0)
我怀疑这个奇怪的字符在Web浏览器端打破了HTML的呈现。
您是否看过生成的HTML?文本是否显示在源视图的textarea中(Firefox上的Ctrl + U)?
如果这不能提供足够的信息,请尝试安装Wireshark,并记录请求和响应。它有一个十六进制视图,可以让你准确地看到角色是什么。
您可能必须过滤可以插入数据库的字符,以及可以在textarea中显示的符合ASCII的内容。