1

我正在使用 ColdFusion MX7 制作一个简单的表格。我有一对文本输入,我想根据在 cfselect 中选择的内容进行填充。对我的 CFC 的任何 Ajax 调用都会返回 404 错误。如果我从浏览器访问 CFC,则不会出现此类错误。我使用 Ben Nadel 为 cfc 制作自定义 java 代理的示例制作了这个。cfc 与该脚本所在的 cfm 页面位于同一文件夹中。以下是相关代码:

 function RemoteCFC(){
        this.name = " ";
        return( this );
       }


      // This handles the remote calls to the CFCs.
      RemoteCFC.prototype.MakeRemoteCall = function(strMethod, objData, fnSuccess, fnError){

      // Create a data struct and extend it with the method
      // name and the data to be passed.
      var objRemoteData = {};

      // Extend the remote data set.
      $.extend(objRemoteData, objData, {method: strMethod, returnFormat: "json"});
      // Make the AJAX call to the remote method.
      $.ajax({type: "get", url: (this.Name + ".cfc"), data: objRemoteData, dataType: "json", 
             success: fnSuccess, error: fnError});

      // Return this for method chaining.
      return( this );
   }

   // Create a new core remote object. We will need this
   // to create the prototype chain such that the other
   // proxy classes can extend this.
   objRemoteCFC = new RemoteCFC();
   // Create a Javascript proxy for this given CFC.
   function RecallService(){
      this.Name = "RecallCountFunctions";
   }

   // Extend the core CFC Proxy functionality.
   RecallService.prototype = objRemoteCFC;


    RecallService.prototype.getInspected = function( objData, fnSuccess, fnError ){
        this.MakeRemoteCall( "getInspected", objData, fnSuccess, fnError );
    }

    //Define another remote method wrapper. 
    RecallService.prototype.getHeld = function( objData, fnSuccess, fnError ){
        this.MakeRemoteCall( "getHeld", objData, fnSuccess, fnError );
    }

   $(   
      function(){
        var myRecallService = new RecallService();

        $( "select[ name = 'CountChosen' ]" ).change( function(){
           var selectedCount = $( "select[ name = 'CountChosen' ]" );
           var inspected = $("input[name='numInspected']");
           var held = $("input[name='numHeld']");

           if (selectedCount.val() != "0"){
               EnableForm();
               myRecallService.getInspected({store: "#cgi.AUTH_USER#", id: selectedCount}, function
                      ( objResponse ){SetValue("inspected", objResoponse );}, function( objResponse ){
                      alert( objResponse.responseText );});                     
               myRecallService.getHeld({store: "#cgi.AUTH_USER#", id: selectedCount}, function
                      ( objResponse ){SetValue("held", objResponse);}, function( objResponse ){
                      alert( objResponse.responseText);});                      
           }
       });
   }

很抱歉这篇长文,我不想遗漏任何可能有帮助的东西。我也没有使用我听说可能会导致问题的 Application.cfc 或 onRequest 方法。

如果您需要查看我的 cfc,请告诉我,我也可以发布它。

修复是:

Change:
   id: selectedCount
To:
   id: selectedCount.val()
4

2 回答 2

1

除了Ray关于Firebug(或Charles或Fiddler或其他代理可能会告诉你的内容)的问题之外,如果它真的只是一个404错误,这肯定会有所帮助,如果不是,这里还有一些其他的想法。

首先,当您说可以从浏览器访问它时,您的意思是http://yourserver/yourcfc.cfc?method=methodname 吗?或者是其他东西?既然你显示你的ajax库添加returnformat = json,你是否也在URL上添加它来测试?

其次,当您说您没有使用 application.cfc 或 cfm 时,您是否意识到这不仅仅是该目录中是否有一个,而是父级、祖父级等中是否有任何?你可能会受到其中之一的影响。避免它的最简单方法(出于测试目的)是将一个空白放入您正在调用的页面的目录中。

第三,如果您查看 application.log 文件(在 [cf]\logs 中,或通过 CF 管理员),它是否显示发生错误?Ajax 客户端通常会隐藏它。确实,您提到获得 404。您确定那是未找到的 CFC 吗?这是什么报道?

CFC 是否与提供此 HTML/javascript 的 CF 页面位于同一目录中?由于您只命名文件,因此它似乎会在那里查找。您是否在浏览器中使用示例 URL 进行了测试?

于 2010-12-13T22:11:46.287 回答
1

确保 CFC 方法标记为 access="remote"。

如果您这样做http://servername/path/to/cfc/nameofcfc.cfc?method=methodName&arg1=arg1value(用您的值替换值)它是否有效?去掉“ajax”

于 2010-12-13T22:00:37.023 回答