Ext.require php文件

时间:2013-04-16 09:22:43

标签: php extjs

我有一个生成js的php文件。 当我尝试:

ext.require('path/file.php');

我收到错误:

Error: [Ext.Loader] Failed loading synchronously via XHR: 'path/file/php.js'; please verify that the file exists. XHR status code: 404

问题是我有file.php和ext尝试获取文件/ php.js

如何让它尝试获取正确的文件?

1 个答案:

答案 0 :(得分:2)

你可以:

  1. 在Ext.Loader config中设置文件别名的路径:

    Ext.Loader.setPath({
        'someAlias': 'path/file.php'
    });
    Ext.require('someAlias');
    
  2. 使用Ext.Loader.loadScript()

    Ext.Loader.loadScript({
        url: 'path/file.php'
    });