作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图从嵌套的 json 中获取值(value),但无法获取值(value)。我有以下数据结构。
我在这里打印记录。
我做了什么。
onWordTap: function(view, index, target, record, event) {
var wordName=record.get('name');
console.log("Word--->>>>"+wordName);
console.log(record);
},
Word--->>>>undefined
var wordName=record.data.get('name');
Uncaught TypeError: Object # has no method 'get'
最佳答案
我假设这是一个 DataView
或 List
,以及 onWordTap
是 itemtap
的监听器.
如果是这种情况,要从记录中获取数据,您只需要 record.get('name')
.您也可以使用 record.get('definitions')[0].definition
(请注意,您在代码中拼写了 defintion
- 小心)。
关于extjs - 如何在sencha touch中获取值(value)形式记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18397623/
我是一名优秀的程序员,十分优秀!