我正在yii框架中開發一個網站,我正在使用ext js 4 mvc結構。
我想用yii框架來使用ext js 4。
我正在使用MVC在ext js 4中獲取禁止消息。ext js MVC 403(禁止)
在這個應用程序,我得到以下消息的執行 GET http://localhost/helloext/protected/controller/Users.js?_dc=1350173045981 403
(禁止)
下面是我的應用程序結構: -
helloext-
--extjs // contins ext js 4 sdk
--protected
--controllers
--Users.js
--app.js
--index.html
代碼: -
1)的index.html
<html>
<head>
<title>Account Manager</title>
<link rel="stylesheet" type="text/css" href="extjs/resources/css/ext-all.css">
<script type="text/javascript" src="extjs/ext-debug.js"></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body></body>
</html>
2)app.js
Ext.application({
name: 'helloext',
appFolder : 'protected',
controllers:['Users'],
launch: function() {
Ext.create('Ext.container.Viewport', {
layout: '',
items: [
{
xtype: 'panel',
title: '<b>Balaee<b>',
html : 'List of users will go here'
}
]
});
}
});
3)
保護
--Users.js
Ext.define('helloext.protected.controllers.Users',
{
//extend: 'Ext.app.Controller',
extend: 'Ext.protected.Controllers',
init: function() {
this.control({
'viewport > panel': {
render: this.onPanelRendered
}
});
},
onPanelRendered: function() {
console.log('The panel was rendered');
}
}
);
如何整合與Ext JS的4 MVC Yii框架?
你有沒有檢查http://www.ext4yii.com/? – Asgaroth