我正在尝试使用React创建Aurelia自定义元素,在Aurelia Q & A上执行以下示例并发生以下异常:
Potentially unhandled rejection [1] TypeError: Cannot read property 'render' of undefined
我做错了什么?这是我的测试代码:
的test.html
<import from="./myelement"></import>
<my-element foo.bind="Value"></my-element>
myelement.html
<template>
<input type="text" placeholder="user">
</template>
myelement.js
import {Behavior} from 'aurelia-framework';
import {React} from 'aurelia-framework';
export class MyElement {
static metadata(){
return Behavior
.customElement('my-element')
.withProperty('foo')
.noView();
}
static inject() {
return [Element];
}
constructor(element) {
this.element = element;
console.log('this:', this);
console.log('element:', element);
}
bind() {
// React.render(<MyReactElement foo={this.foo} />, this.element);
React.render(React.createElement(MyReactElement, { foo: this.foo }), this.element);
}
fooChanged() {
this.bind();
}
}
答案 0 :(得分:2)
导入第三方库的技巧是您必须选择希望如何访问库。在您的情况下,如果您尝试使用结合视图和视图模型的react创建单个自定义元素,您可以这样做 -
jspm install react
然后在视图模型中 -
import react from 'react'
然后您可以在视图模型的任何位置使用它,例如 -
attached(element){
// React pseudo-code
react.render(element);
}
如果您选择通过依赖注入加载库,以便它可以作为模块在任何有更多选项的模块中使用,但我认为这应该为您提供一个开始。