1

这节课应该很简单。他们拼出答案,但我和论坛中的 10 多人无法让这节课发挥作用。

我们是否错误地实现了代码?教训是否具有误导性?答案检查器刚刚坏了吗?

http://www.codecademy.com/courses/web-beginner-en-B8H1e/0#!/exercises/0

$(window).on("html_loaded", function(e) {
    $(".submit_button").click(function(e) {

        // 1. Set the type of Parse Object, in this case use 'Post'
        var Post = Parse.Object.extend("Post");

        // 2. Create a new object of type Post
        var myPost = new Post() ;

    });
});
4

1 回答 1

0

是的,似乎被破坏了,因为单击提交后没有用户反馈。

第 2 部分显示的答案与您已有的答案相同:

$(window).on("html_loaded", function(e) {
    $(".submit_button").click(function(e) {

        // This creates our new Post object
        var Post = Parse.Object.extend("Post");
        var myPost = new Post();

        ...

    });
});
于 2013-01-23T06:24:38.347 回答