在js函数中,我必须调用rpc.query
但是所有rpc的执行都是在函数结束后完成的。
我该怎么办?
预先感谢
rpc.query({
model: 'product.category',
method: 'get_category_tree',
args: args,
})
.then(function (categ_presta){
_.each(categ_presta, function (my_categ_presta) {
console.log("Test Greg : " + my_categ_presta.id + " - " + my_categ_presta.name);
self.greg.push([my_categ_presta.id,my_categ_presta.name]);
});
self.testRpcEnCours = false;
});
console.log("FIN");