【发布时间】:2011-09-04 03:07:23
【问题描述】:
我认为检查 Sproutcore 会很有趣,但我遇到了一个我似乎无法弄清楚的错误。我正在关注最近的 NetTuts+ 使用框架编写微博的教程。我的代码如下:
Microblog.mainPage = SC.Page.design({
mainPane: SC.MainPane.design({
childViews: 'topView postView contentView'.w(),
topView: SC.ToolbarView.design({
childViews: 'appName'.w(),
layout: { top: 0, left: 0, right: 0, height: 40 },
anchorLocation: SC.ANCHOR_TOP,
appName: SC.LabelView.design({
layout: { top: 5, left: 5, width: 100 },
displayValue: "MicroBlog App",
layerId: "mb-logo" // html id attribute
})
}),
postView: SC.View.design({
childViews: 'form'.w(),
layout: { top: 40, height: 75 },
backgroundColor: 'white',
form: SC.View.design({
childViews: 'postContent post'.w(),
layout: { left: 200, right: 200 },
postContent: SC.TextFieldView.design({
layout: { top: 10, left: 10, right: 10, height: 60 },
isTextArea: YES,
hint: "What's on your mind?"
}),
post: SC.ButtonView.design({
layout: { top: 80, right: 10, width: 100 },
title: "Post",
isDefault: YES
})
})
}),
contentView: SC.ScrollView.design({
hasHorizontalScroller: NO,
layout: { top: 135, bottom: 0, left: 0, right: 0 },
contentView: SC.ListView.design({
})
})
})
});
但是,由于某种原因,它没有加载按钮,当我单击 buttonView 或 contentView 所在的页面时,我的控制台中出现以下错误:
Uncaught TypeError: Cannot call method 'get' of null
我尝试用谷歌搜索它,但没有运气。我正在使用 Sproutcore 1.6。
谢谢
【问题讨论】:
标签: sproutcore typeerror