我有2個作業隊列:從一個工作 $this->dispatch(new Test1Job())->chain(new Test2Job($here I want to have a paramter, which is returned from Test1Job));
我怎樣才能獲取數據到另一個隊列?
我嘗試在Windows上測試MeteorJS。我下載了Meteor的最新版本(1.5.2)。 在我的工作,當我tryed以創建「流星創建簡單的待辦事項」一個新的項目,如管理員或不,我有一個錯誤: C:\DEV\METEORJS>meteor create simple-todos => Errors while creating your project While downloading [em
請考慮這樣的代碼: class a {
constructor() {
this.test = "test from a";
this.testA = "X";
}
mimi() {
console.log('aaaaaaaa', this.test, this.testA)
}
}
class b extend