Hi Am Posting data to server data send successfully but am not getting success message
this is my code
function sendingdate() {
/
var ajaxservice = WebUrl + "getAttachment?userid=" + userid + "&company_id=" + companyid + "&outlook_key=" + OutlookKey + "&callback=OutlookWeb";
$.ajax({
url: ajaxservice + "getAttachment?outlook_key=" + OutlookKey + "&callback=OutlookWeb",
data: { "Attachment_Name": AttachmentName, "Attachment_content_data": Attachmentcontentdata },
type: 'POST',
contentType: "application/json",
dataType: 'json',
success: function (data) {
console.log(JSON.stringify(data));
},
error: function (errorThrown) {
console.log('Could not get posts, server response:', errorThrown);
}
});
any give me best suggestion
3 Replies
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Midhun TpPosted Apr 17, 2018, 6:05 AM
naveen kumarPosted Apr 17, 2018, 4:35 AM
Midhun TpPosted Apr 16, 2018, 6:15 AM