콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
9964 화면

Hi everybody,

I would like to get result from my request "instance.web.Model", then call this.super(). The matter is that "instance.web.Model" is asynchronous, so in my case the super() will be called before the request has finished.

    MyObject.extend({

        init: function(parent, data){

            var newData = instance.web.Model('advanced.search')

            .call('check_duplication', [data]).done(function (name) {

                // do stuff

                return name

            });

            data = newData;

            this._super.apply(this, arguments);

            // super is called before my request is done so the new data are not sent to super.

        }

    });

Do you know how to get through that? In order to pass the newData instead data as argument to the super object.

PS : I tried to encapsulate this in self : var self = this; but it does not work because it seems the parent object I extend continue to run without waiting. So I got error like "self.super(... is not a function".

아바타
취소

Odoo comes with jQuery BlockUI plugin. I believe, it can help you.

작성자

How to implement it? I tried some simple $.blockUI() -> $.unblockUI() but I cannot get the right behavior.

In odoo: instance.web.blockUI() and instance.web.unblockUI().

작성자

blockUI does not avoid super to be called before Model has done its request. If I try to deferred it tells me : "dict.widget.attrs is undefined". Whenever I try to call super only when request is done I got this error back

베스트 답변

Hello , try this :

init: function(parent, data){
      var tmp = this._super.apply(this, arguments);

// your function here

return tmp;

},

Also, you can put your function in another block and call it like bellow :

$.when(self.your_function()).done(function(result){     
                //continue
            });

아바타
취소
작성자

Thx Thierry for reply, I'll tell you whether it succeed once I try it.