这个问题对我来说似乎很奇怪,因为它是间歇性的。我会很详细,所以请多多包涵。
我有一个 textarea,它使用http://redactorjs.com制成所见即所得的编辑器
我正在使用点击编辑功能 (http://redactorjs.com/docs/examples/click-to-edit/) 并使用 ajax 帖子保存数据。
mysql 数据库字段称为“信息”并设置为“blob”类型。
现在,如果我在 textarea 中输入以下文本并按保存,它可能会很好地存储它。
“你好,我叫greg,我是一个非常好的演员。我也是一个烹饪爱好者,曾经在烹饪比赛中获得第二名。”
然后,如果我单击编辑并添加到它
“你好,我叫greg,我是一个非常好的演员。我也是一个烹饪爱好者,曾经在烹饪比赛中获得第二名。我也喜欢在星期四早上游泳!”
我有时会看到只有像下面这样的东西会保存到数据库中。
“你好,我叫greg,我是一个非常好的演员。我也是一个曾经来过的烹饪爱好者”
然后,如果再次编辑它并重新添加相同的文本并再次保存,它会成功保存!?!?
让我给你看一些代码..
视图.php
回显信息数据
<script>
function ClickToEditInfo()
{
var info = ['formatting', '|', 'bold', 'italic', 'deleted', '|',
'unorderedlist', 'orderedlist', 'outdent', 'indent', '|',
'table', 'link', '|',
'fontcolor', 'backcolor', '|',
'alignleft', 'aligncenter', 'alignright', 'justify', '|',
'horizontalrule']
$('#info').redactor({
focus: true,
buttons: info,
wym: true,
fixed: true
});
}
function ClickToSaveInfo()
{
var html = $('#info').getCode();
var item = <?php echo $item_id; ?>;
$.ajax({
type: 'POST',
url: "ajax/clickToEditInfo.php",
data: "item_id="+item+"&html="+html,
error: function(xhr, status, error) {
console.log(error);
},
beforeSend: function() {
$("#ajax").show();
$("#ajax").html('<span class="label label-info">Saving info.. please wait</span>');
},
success: function(html){
console.log(html);
$("#ajax").html('<span class="label label-success">Saved!</span>');
$("#ajax").fadeOut(1000, function () {
$(this).hide();
});
}
});
$('#info').destroyEditor();
}
<?php
endif; // end check if user owns item
}
?>
</script>
<div id="info">
<?php echo $item->getMainField('info', $item_id); ?>
</div>
clickToEditInfo.php
<?php
include_once('../classes/item.class.php');
if (!isset($_SESSION)) session_start();
$item_id = $_POST["item_id"];
$html = $_POST["html"];
$user_id = $_SESSION['jigowatt']['user_id'];
if( $item->checkUserOwns($user_id, $item_id) ) : //check user owns item
$item->clickToEditInfo($user_id, $item_id, $html);
else : // user does not own it
return false;
endif; // end check if user owns item
?>
和
item.class.php > clickToEditInfo
public function clickToEditInfo($user_id, $item_id, $html) {
$stmt = parent::query("UPDATE `item_main` SET `info` = '$html' WHERE `item_id` = $item_id AND `user_id` = $user_id");
}
您能想出为什么发布在数据库中的数据会被间歇性截断的原因吗?
更新:
我找到了一种可靠地重现它的方法。就像我说的它是一个所见即所得的编辑器。
“你好,我叫greg,我是一个非常好的演员。我也是一个烹饪爱好者,曾经在烹饪比赛中获得第二名。”
例如,如果我突出显示竞争并单击超链接按钮并将其链接到谷歌。按保存并插入以下内容。
“你好,我叫格雷格,我是一个很好的演员。我也是一个烹饪爱好者,曾经在烹饪中获得第二名”
我已经编辑
<?php
include_once('../classes/item.class.php');
if (!isset($_SESSION)) session_start();
$item_id = $_POST["item_id"];
$html = $_POST["html"];
$user_id = $_SESSION['jigowatt']['user_id'];
if( $item->checkUserOwns($user_id, $item_id) ) : //check user owns item
$item->clickToEditInfo($user_id, $item_id, $html);
**echo $html;**
else : // user does not own it
return false;
endif; // end check if user owns item
?>
并且 console.log(html) 正在显示
<p>Hello my name is greg and i am a very good actor. I am also a cooking enthusiast who once came 2nd in a cooking
所以它没有发布所有数据,与html标签有关吗?
更新2
我已经完成控制台登录var html = $('#info').getCode(); 并确认
<p>Hello my name is greg and i am a very good actor.</p><p>I am also a cooking enthusiast who once came 2nd place on Come dine with me :) <a href="goggle" target="">link</a> </p>
已发布,但仅
<p>Hello my name is greg and i am a very good actor.</p><p>I am also a cooking enthusiast who once came 2nd place on Come dine with me :)
在 clickToEditInfo.php 中收到
我该如何解决?