JSONデータベースでExtJSを使用しようとしましたが、同じエラーが発生し続けます:ext-all.js Uncaught TypeError: Cannot call method 'getProxy' of undefined
。エラー 'ext-all.jsを解決する方法Uncaught TypeError:未定義の' getProxy 'メソッドを呼び出せませんか?
私のスクリプトは次のとおりです。私のHTMLで
Ext.onReady(function(
var store=new Ext.data.Store(
reader=new Ext.data.JsonReader(
{name: 'name'},
{name: 'category' },
{name: 'address'},
{name: 'lat'},
{name: 'long'},
{name: 'tel'},
{name: 'opening'},
{name: 'closing'}),
proxy=new Ext.data.HttpProxy({
url : 'http://localhost/progetto/descrittore/json.php'}))
// method : 'GET'
})
私が含ま:
<script type="text/javascript" src="extjs/ext-all.js"></script>
<script type="text/javascript" src="extjs/prova.js"></script>
をこのエラーを引き起こし、そしてどのように私はそれを解決することができますか?
私の現在の問題で私は助けられました。ありがとう、あなたのために+1! –