有人可以帮助将Jquery ajax转换为Coldfusion cfhttp。
$.ajax({
type: "POST",
url: "something.cfm",
data: { 'grid': 123 },
dataType: "xml",
success: function(xml) {
var dataContent = 'Success';
}
});
我曾尝试转换过:
<cfhttp url="something.cfm"
method="POST"
result="objGet">
<cfhttpparam type="formfield" name="grid" value="123"/>
<cfhttpparam type="header" name="Accept" value="application/xml, text/xml, */*" /></cfhttp>
但它没有用,有人可以帮忙。