欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程资源 > 编程问答 >内容正文

编程问答

extjs之TypeError: d.read is not a function解决方案

发布时间:2024/6/14 编程问答 72 豆豆
生活随笔 收集整理的这篇文章主要介绍了 extjs之TypeError: d.read is not a function解决方案 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

在创建如下代码时报出此错:TypeError: d.read is not a function

1 Ext.define('shebyxgl_sheb_model', { 2 extend: 'Ext.data.Model', 3 fields: [ 'shebid', 'shebname' ] 4 }); 5 var sheb_store = Ext.create('Ext.data.Store', { 6 model: 'shebyxgl_she_model',//model名称引用错误,少了一个字母b 7 proxy: { 8 url: '../shebyxgl/getSheb', 9 type: 'ajax', 10 method: 'GET', 11 reader: { 12 type: 'json', 13 root: 'datas' 14 } 15 } 16 });

问题原因出在model上,因为store引用的model与你在后台获取的json数据匹配不上,故reader没用查找到,仔细看你的store里面引用的model是否是你创建的model,我上面的代码就出现在这里,

转载于:https://www.cnblogs.com/smallrock/p/3514776.html

总结

以上是生活随笔为你收集整理的extjs之TypeError: d.read is not a function解决方案的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。