我有以下代码,它有一个问题,在第一次加载时不会显示任何内容,但是当我按转盘上的next按钮时,一切都会正常运行,因此问题出在第一个调用中,而其他调用完全一样,但泰斯语正在工作:S

我不会将显示代码放在哪里,因为它只是工作,因为它只是将数据添加到div和东西的jquery,但是正如我所说,第一次,数据是空的。

var dificildecision = function() {
}

dificildecision.prototype = {
    is_animating : false,
    base_url : window.base_url,
    current_decision : null,
    decisiones_seen : 0,
    historial_decisiones : {
        "decisiones" : []
    },
    is_previous : false,
    previous_id : 1,

    next_decision : function(replace) {
        if (this.is_animating != true) {
            this.is_animating = true;
            if (this.is_previous) {
                decision = this.get_decision(this.previous_id);
            } else {
                if (this.get_current_decision() === false)
                    decision_id = 1;
                else
                    decision_id = this.current_decision.id;
                this.get_new_decision(decision_id);
                decision = this.get_current_decision();
                $('#decision-carousel').html("This is: " + decision.key);
                this.is_animating = false;
                this.is_previous = false;
            }
        } else {
            // console.log("Slow down");
        }
    },

    get_new_decision : function(decision_id) {
        if (typeof (decision_id) === "undefined" || decision_id === null) {
            decision_id = 1;
        }
        $.getJSON('http://echo.jsontest.com/key/value', this.set_current_decision);
    },
    get_current_decision : function() {
        return (this.current_decision) ? this.current_decision : false;
    },
    set_current_decision : function(decision) {

        // THIS DOESN'T WORK
        this.current_decision = decision;

        // THIS WORK SECOND+ TIME EXECUTED
        //dificildecision.prototype.current_decision = decision;
    }
};

    var dificil = new dificildecision();
    dificil.next_decision(true);
$('#testlink').on('click', function(){
    dificil.next_decision(true);
});


使用此代码,控制台上什么也不会显示,但是如果我更改

set_current_decision : function(decision) { this.current_decision = decision; }



set_current_decision : function(decision) { dificildecision.prototype.current_decision = decision; }

它仅在处理轮播功能时输出对象,而在页面加载时不输出...

我也尝试改变

get_new_decision : function(decision_id) { if (typeof (decision_id) === "undefined" || decision_id === null) { decision_id = 1; } $.getJSON('/~robhunter/dificildecision/web/app_dev.php/new/' + decision_id, this.set_current_decision); },



get_new_decision : function(decision_id) { if (typeof (decision_id) === "undefined" || decision_id === null) { decision_id = 1; } $.getJSON('/~robhunter/dificildecision/web/app_dev.php/new/' + decision_id, dificildecision.prototype.set_current_decision); },

但是,正如原始代码一样,什么也没有显示:S

您可以在这里尝试http://jsfiddle.net/TUX5a/

最佳答案

尝试:

$(document).ready(function() {

  //  window.dificildecision = new dificildecision();
      var dificildecision = new dificildecision();
}


并在this中使用dificildecision.prototype.next_decision

说明:

使用以下行声明函数时:全局范围内的function dificildecision(),将为窗口对象分配一个名为dificildecision的新属性。
当您调用window.dificildecision = new dificildecision();时,此属性(对函数的引用)将替换为实例

=>这会在应用程序中导致不可预测的行为,应避免使用。

OP创建小提琴后进行更新:

我检查了您的小提琴,您对ajax的异步特性有疑问。调用decision = this.get_new_decision();时,您向服务器发出ajax请求以获取决定。在您调用decision = this.get_current_decision();的下一行中,尚未设置该决定(尚未运行回调set_current_decision)。

有两种解决方案:


通过将$.ajax函数与async: false一起使用同步ajax。但是,不建议使用此解决方案,因为它会阻止浏览器并降低用户体验。
使用回调或Promise API(推荐)。下面是一个演示如何执行此操作的示例:


DEMO

从getJSON返回承诺

get_new_decision : function(decision_id) {
    if (typeof (decision_id) === "undefined" || decision_id === null) {
                decision_id = 1;
    }
  return $.getJSON('http://echo.jsontest.com/key/value', this.set_current_decision);
}


并在next_decision中再次返回:

next_decision : function(replace) {
        if (this.is_animating != true) {
            this.is_animating = true;
            if (this.is_previous) {
                decision = this.get_decision(this.previous_id);
            } else {
                if (this.get_current_decision() === false)
                    decision_id = 1;
                else
                    decision_id = this.current_decision.id;
                decision = this.get_new_decision(decision_id);

                this.is_animating = false;
                this.is_previous = false;
            }
        } else {
            // console.log("Slow down");
        }
        return decision;//this could be a promise or a value.
    },


当数据准备就绪时,使用$.when执行回调,如果参数不是Promise,则将立即调用回调(将其视为已解决的Promise):

$.when(dificil.next_decision(true)).then(function(decision){
        $('#decision-carousel').html("This is: " + decision.key);
});


该代码只是有关如何使用Promise API的演示,您可能需要重组代码以使其适合此编程模型。

10-02 14:27