Ext不在ext.net mvc中定义

时间:2015-08-13 03:00:02

标签: wcf asp.net-mvc-4 ext.net

目前,我开始使用ext.net mvc。所以,对我来说一切都是新的。请帮帮我。它显示ext未定义。我认为它缺少一些js文件。我创建了Indext.cshtml和代码如下: 先感谢您。

  @{
ViewBag.Title = "Index";
  }

<script>
Ext.onReady(function () {
    alert('start');
var myparams1 = new Object();
myparams1.id = 1;
Ext.Ajax.request({
    url: 'Services/AService.svc/GetMyData'      
    method: 'GET',
    success: function (response, options) {
        // response callback
        alert('Success');

    },
    failure: function (response, options) {
        Ext.MessageBox.alert('Failed', 'Unable to get');
    }

});
});        
</script>

1 个答案:

答案 0 :(得分:0)

我刚刚找到了链接。我们可以在cshtml中链接ext-base和ext-all。

 <script type="text/javascript" src="http://extjs-public.googlecode.com/svn/tags/ext-2.2/release/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="http://extjs-public.googlecode.com/svn/tags/ext-2.2/release/ext-all.js"></script>