今天遇到一个问题
数据库中没有值,检查前台代码后发现没有问题呀。
function add() {
var type_Id = "2";//大类ID
var sonType_Name = $(".sonType_Name").val();//二类名称
if (sonType_Name == "") {
layer.alert("您未填写名称");
return;
}
var sonType_Img = $("#ContentPlaceHolder1_product_Img").val();//上传图片
if (sonType_Img == "") {
layer.alert("您未上传上传图片");
return;
}
var sonType_Introduct = editor.$txt.formatText();//介绍
if (sonType_Introduct == "") {
layer.alert("您未对填写介绍");
return;
}
var seondClass_Introduce = editor.$txt.html();//内容
var reg = / /g;
var seondClass_Introduce = seondClass_Introduce.replace(reg, "");
var val = "type_Id,sonType_Img,sonType_Introduct,sonType_Name";
//大类ID,图片,介绍,子类名称
var html = "&sonType_Img=" + sonType_Img + "&sonType_Introduct=" + sonType_Introduct + "&sonType_Name=" + sonType_Name + "&type_Id=" + type_Id;
//alert(sonType_Img);
$.ajax({
type: "post",
dataType: "text",
url: "ashx/second_Editor.ashx",
data: "our=新增子类" + html+"&val="+val,
success: function (msg) {
if (msg == "成功") {
layer.msg('新增成功', { icon: 1 }, function () {
clo();
});
}
if (msg == "已存在") {
layer.alert("该类型已存在");
}
},
error: function (xml) {
alert("系统繁忙,请稍候");
}
});
}
弹了一下图片,也是有值的,这就尴尬了,最后在一般处理程序中找到了这个问题
多了个空格,找了半天错误,唉,来一发,纪念一下,下次记住