0
我想使用地平線從Rethinkdb返回一個值:地平線/ Ionic2返回一個值
ionViewLoaded() {
let exampleValue;
exampleValue = this.getValue();
console.log(exampleValue); // gives me "undefined"
}
getValue() {
let hz = new Horizon({host: "localhost:3100"});
hz.connect();
let table = hz('values');
table.find(1).fetch().subscribe((val) => {
return val;
});
}
我需要外界的功能此值,然後我想寫簡單的if/else語句(如果我這樣做成查詢然後我得到奇怪的錯誤 - 視圖重新加載超過200倍......)。無論如何要返回這個值嗎?
謝謝!現在我明白了。 ;) – Patrick1870