, :
$.ajax(
{
type: "POST",
url: path+"/html-action",
data: {data1: dataone,
data2: datatwo,
data3: datathree,
data4: datafour,
message: ckeditortxt},
cache: true,
success: function(html)
{
}
}
At first I used data to transfer data, but for some reason, the element that stores the ckeditor data is not considered as a parameter. Therefore, I divided all the parameters into separate components, that is, data1 data2, data3, data4 .... and this time it worked
source
share