将Jquery ajax转换为Coldfusion cfhttp

时间:2017-06-04 14:37:11

标签: jquery ajax coldfusion

有人可以帮助将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>

但它没有用,有人可以帮忙。

0 个答案:

没有答案