Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
6 Trả lời
8580 Lượt xem

I have this piece of code:

new instance.web.Model('hr.employee').query(["week_busyness"]).filter([["id", "=", employee_id]]).first().then(function(result){
                return result.week_busyness;

});

It returns field I need, but I can only use it inside that defined function. But I need that field to be used outside function. I just can't seem to understand how to do that..

For example if I assign it to variable like:

test = new instance.web.Model('hr.employee').query(["week_busyness"]).filter([["id", "=", employee_id]]).first().then(function(result){
                return result.week_busyness;

and then:

console.log(test)

it prints function object, not the 'result.week_busyness'. How could I get instead that value?

Ảnh đại diện
Huỷ bỏ

can you post your console.log(test) output ?...

or give me the output alert("myObject is " + test.toSource());

Tác giả

output is this: Object {state: function, always: function, then: function, promise: function, pipe: function…}

Tác giả

and I can't output with toSource(). It gives this error then - Uncaught TypeError: undefined is not a function

Andrius, Why don't you define a global variable at the top, and then assign your result to that variable. then you can use it anywhere.... "even outside of the scope of function too"

Câu trả lời hay nhất

You have to define your function outside that context.

Maybe you could try:

function getResults (result) {
console.log(result); // to see which data come from server
    return result.week_busyness;
}
function getError (result) {
console.log(result); // to see which data come from server
}

then you call .Model() which always returns a promise.


test = new instance.web.Model('hr.employee')
       .query(["week_busyness"])
       .filter([["id", "=", employee_id]])
       .first().then(getResults);

or

test = new instance.web.Model('hr.employee')
       .query(["week_busyness"])
       .filter([["id", "=", employee_id]])
       .first().done(getResults).fail(getError);


If you use then(getResults) even if error occur you have to handle the returned data or error.

If you use .done(getResults), the function only called if call to server was ok

If you use .fail() you could catch error if happens.


If you need more information, try search for javascript promises

I hope it's help you.


Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Can you do this

test.done(function( value ) {
    console.log(value);
});

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 9 21
2283
3
thg 8 19
8521
1
thg 2 16
5767
1
thg 6 25
5641
2
thg 8 24
3016