gpt4 book ai didi

sproutcore - Sproutcore:无法调用null的 'get'方法

转载 作者:行者123 更新时间:2023-12-03 13:38:02 26 4
gpt4 key购买 nike

我认为将Sproutcore checkout 会很有趣,但是我遇到了一个错误,似乎无法弄清。我正在关注有关使用框架编写微博的最新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。

谢谢

最佳答案

NetTuts Sproutcore 应用程序基于 Sproutcore 库1.4

Sproutcore在版本之间有很大的变化。我认为这是你的问题。

关于sproutcore - Sproutcore:无法调用null的 'get'方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6164948/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com