2
我想獲得一個簡單的動態視圖工作的最簡單的方法。動態視圖創建
import {inject, noView, ViewCompiler, ViewSlot} from 'aurelia-framework';
@noView
@inject(ViewCompiler, ViewSlot)
export class ButtonVM{
constructor(vc, vs){
this.viewCompiler = vc;
this.viewSlot = vs;
var viewFactory = this.viewCompiler.compile('<button>Some button</button>');
但apparantly我失去了一些東西,認爲工廠應該能夠創建一個視圖,那麼它應該被添加到viewslot?
我在上面的代碼中缺少什麼?
我要指出,我試圖按照羅布的這個線程評論: https://github.com/aurelia/templating/issues/35
是的,我注意到了,不知道這是否足夠。一旦我測試了它,我也會在這裏發佈結果。 – Janus007