可能重复:
如何使用 Ext.example 中的文件
我正在使用Ext.example.msg('Button Click', 'GOT SOME THING');
消息框(出现在屏幕顶部的弹出框)。但我收到此错误消息;
TypeError: Ext.example is undefined
在我的 app.js 中,我添加了以下代码;
Ext.Loader.setPath('Ext.examples', 'app/extjs/examples/shared/examples.js');
Ext.application({
requires: [
'Ext.window.MessageBox',
'Ext.examples.*'
],
我想知道我是否在上面添加了正确的路径。项目结构如下;
Project_Folder
-> app.js
-> extjs
--> examples
--->shared
---->example.js
更新
Ext.Loader.setPath('Ext.examples', '/Project_Folder/app/extjs/examples/shared/');
Ext.application({
requires: [
'Ext.window.MessageBox',
'Ext.example.*'
],