-1

我在开发服务器中的一个文件上编写了一个 javascript 函数(已经对其进行了测试并且它可以工作)并且它工作得很好,我将文件上传到生产服务器,当我测试它时,我收到以下错误:

歌剧蜻蜓 说:

Uncaught exception: TypeError: Cannot convert 'App.system.ManageProductLines' to object

萤火虫 说:

App.system.ManageProductLines is undefined

这些文件完全相同(我用 WinMerge 检查并没有发现任何差异),唯一的区别是它们所在的服务器。

我的开发服务器是 Windows 上最新版本的 Xampp,生产服务器是 OpenSuse 上最新版本的 Xampp。

有谁知道发生了什么?

编辑:

dtryon 建议,这里有一些示例代码:

在 main.js

App.system.ManageProductLines = function()
{
     var init_row = function(row)
     {
          //function to add table row behavior
     }

     var reindex_odd_even_rows = function(table)
     {
           //function to reoder table when row is deleted
     }

 }

在 index.tpl(Smarty 模板)中:

{if $product_lines_url}
    <script type="text/javascript">
        App.system.ManageProductLines.init('manage_product_lines');
    </script>
{/if}

smarty 模板中的 if 确实正在执行,因为最终的 HTML 中包含 script 标记,但是在开发服务器中找到了该函数,但在生产服务器中却没有

编辑2:

感谢Paul Butcher,我想我越来越接近答案了,我尝试了以下方法:

<script type="text/javascript">
$(document).ready(function()
{
    App.system.ManageProductLines.init('manage_product_lines');
});
</script>

但是它仍然无法加载,然后我尝试了这个:

<script type="text/javascript">
$(document).ready(function()
{
         alert("Start document.ready");

         if(App.system.ManageProductLines.init)
         {
            alert("Method found");
            App.system.ManageProductLines.init('manage_product_lines');
         }
         else
         {
             alert("Method not found");
         }

         alert("End document.ready");
});

根据我写的内容,我应该收到以下警报:

"Start document.ready", "Method found" || "Method not found", "End document.ready"

奇怪的是我只得到“Start document.ready”,之后它似乎停止执行,Opera Dragonfly 和 Firebug 都显示与以前相同的错误。

4

2 回答 2

2

到达此行时:

App.system.ManageProductLines.init('manage_product_lines');

无法确定 main.js 是否已加载或执行。您需要将该调用绑定到仅在加载所有脚本后才会发生的事件。

如果您正在使用一个,大多数 javascript 库都提供这样的事件(例如ready在 jQuery 中)。如果您不使用一个,那么绑定到 onload 应该可以工作。

两种环境之间存在差异的一个可能原因可能是网络延迟或负载。如果开发服务器是 localhost,这种情况尤其可能发生。

于 2012-02-17T18:30:48.983 回答
1

我发现了问题,问题是服务器应用程序(activecollab 2)已经有一个名称完全相同的文件,由于某种原因,它总是比我的文件具有更高的优先级,在联系 AC 支持后,唯一的选择是覆盖他们和我的档案。

于 2012-07-03T16:08:19.997 回答