我在开发服务器中的一个文件上编写了一个 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 都显示与以前相同的错误。