私は、ext js4mvc構造を使用しているyiiフレームワークでWebサイトを開発しています。
私はyiiフレームワークでextjs4を使おうとしています。
禁止されたメッセージが表示されるextjs4でMVCを使用しています。
このアプリケーションの実行中に、以下のメッセージが表示さ
れます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');
}
}
);
yiiフレームワークをextjs4 mvcと統合するにはどうすればよいですか?