首页 > 其他分享 >this.onMetaChange is undefined和Ext.Container.LAYOUTS[this.layout.toLowerCase()] is

this.onMetaChange is undefined和Ext.Container.LAYOUTS[this.layout.toLowerCase()] is

时间:2023-09-07 12:02:38浏览次数:48  
标签:onMetaChange Container undefined mapping Ext layout post data name


由于现在公司所有项目开发要用ExtJS来做前台展示,所以不得不自学,不然就得面临被自我淘汰了。

估计可能报同样的错但却不是同样的原因,不过保存下来还是可以作为下一次寻找原因的第一思路。^_^
1、
报错:

this.onMetaChange is undefined
http://localhost:8080/ExtStudy/extjs/ext-all.jsLine 10451
原因:
 var ds =  Ext.data.Store({
  proxy:new Ext.data.ScriptTagProxy({
   url:'http://extjs.com/forum/topics-remote.php'
  }),
  reader:new Ext.data.JsonReader({
   root:'topics', 
   totalProperty:'totalCount', 
   id:'post_id'
  },[
   {name:'postId',mapping:'post_id'},
   {name:'title',mapping:'topic_title'},
   {name:'topicId',mapping:'topic_id'},
   {name:'author',mapping:'author'},
   {name:'lastPost',mapping:'post_time',type:'date',dateFormat:'timestamp'},  //"post_time":"1267062772"
   {name:'excerpt',mapping:'post_text'}
  ]),
  baseParams:{limit:20,forumId:4}
 });
中 var ds =  Ext.data.Store({这行代码少了一个"new" ,修改为:
 var ds =  new Ext.data.Store({

2、
报错:
Ext.Container.LAYOUTS[this.layout.toLowerCase()] is not a constructor
http://localhost:8080/ExtStudy/extjs/ext-all.jsLine 13853
原因:layout:'cloumn'该布局不存在
      中的拼写错误,应为:layout:'column'

标签:onMetaChange,Container,undefined,mapping,Ext,layout,post,data,name
From: https://blog.51cto.com/u_2544485/7395701

相关文章

  • containerd常用命令
    背景以前都是使用docker,现在使用的k3s的容器运行时是containerd,所以也熟悉下containerd的常用命令。命令查看镜像列表crictlimageslist查看运行的容器列表crictlps查看所有容器资源情况crictlstats清理未被容器引用的镜像crictlrmi--prune......
  • ECI (Elastic Container Instance) 弹性容器实例
    弹性容器实例ECI(ElasticContainerInstance)是阿里云在云原生时代为用户提供的基础计算服务,是阿里云云原生时代下的云计算基础设施。ECI改变了以往计算服务以整台机器作为交付形态的传统,通过结合容器技术与无服务器(Serverless)技术为用户提供了一款安全便捷的Serverles......
  • unll 和undefined 的区别
    1.  如果表示对象为空用null,如果表示非对象为空用undefined;2.  undefined 表示未定义,新定义的变量没有赋值就是undefined;3.  null表示清空,当一个变量不用的时候,除了等待网页关闭销毁,也可以把它赋值为null。此时游览器会进行一个回收也就是清空内存。4. null ==......
  • 【Azure App Service for Container】记一次拉取镜像失败的特殊情况
    问题描述使用AzureAppServiceForContainer拉取应用镜像,发现拉取失败。错误消息:“ImagepullfailedsinceInspectimagereturnednull:xxxxxxx.azurecr.cn/dataapi:20230830V2.0”CreateImageAsync()forxxxxxxx.azurecr.cn/dataapi:20230830V2.0failedwithEx:Docke......
  • kubeadm 安装k8s1.28.x 底层走containerd 容器
    一:k8s1.28.x的概述1.1:k8s1.28.x更新Kubernetesv1.28是2023年的第二个大版本更新,包含了46项主要的更新。而今年发布的第一个版本v1.27有近60项,所以可以看出来,在发布节奏调整后,每个Kubernetes版本中都会包含很多新的变化。其中20个增强功能正在进入Alpha......
  • 2023-08-26 关于JSON.stringify会过滤调undefined值的问题 ==》在格式化之前先用type
    今天传参给后端的时候就发现了这么个问题,明明对象里面有这个字段a,但是打印出来死活没有,去掉json格式化后才发现是该值a为undefined,遂百度,故得知该值会被过滤掉。被过滤掉的原因是因为undefined值不符合JSON.stringify的规范。......
  • SpringBoot 测试实践 - 3:@MockBean、@SpyBean 、提升测试运行速度、Testcontainer
    编写测试的时候,我们必须保证外部依赖行为一致,也需要模拟一些边界条件,所以我们需要使用Mock来模拟对象的行为。SpringBoot提供了@MockBean和@SpyBean注解,可以方便地将模拟对象与Spring测试相结合,简化测试代码的编写@MockBean@MockBean是SpringBootTest提供的注解,用......
  • error: undefined reference to `cv::imread(cv::String const&, int)' 解决方法
    方法1原文链接:https://blog.csdn.net/WhiteLiu/article/details/72901520编译时出现下列错误:undefinedreferenceto'cv::imread(cv::Stringconst&,int)'undefinedreferenceto'cv::String::deallocate()'undefinedreferenceto'cv::imread(cv::S......
  • 为什么我们应该避免使用undefined?
    在JavaScript中,undefined是一个特殊的值和全局变量,用于表示一个未定义的变量或属性。当一个变量被声明但未被赋予初始值时,它的值就是undefined。类似地,如果你访问一个对象的不存在的属性,也会得到undefined。为什么我们应该避免使用undefined?可读性差首先,使用undefined可......
  • Container Runtime Intro
    https://www.tutorialworks.com/difference-docker-containerd-runc-crio-oci/......