我创建了一个简单的 React 组件。我希望该组件用作插件或小部件。我从Writing embeddable Javascript plugin with React & Webpack 中得到了帮助,并设法将我的webpack 设置如下:
output: {
path: __dirname + '/dist',
filename: './app/components/FirstWidgetIndex.js',
publicPath: '/',
library: 'tracking',
libraryTarget: 'umd',
umdNamedDefine: true,
}
我的组件如下:
import React, { Component, PropTypes } from 'react';
export default class FirstWidget extends Component {
constructor() {
super();
}
render() {
return (
<div className="setting-fullpage">
<p>React Widget</p>
</div>
)
}
}
const mapStateToProps = state => {
//
}
module.exports = FirstWidget
我的FirstWidgetIndex
文件(webpack的入口点)如下:
import React, { Component, PropTypes } from 'react';
import { render } from 'react-dom';
import App from './FirstWidget.js';
render(
<App />,
document.getElementById('app')
);
现在,我想将它添加FirstWidget
为一个可嵌入的小部件。我在html
文件中的第三方域上调用它,如下所示:
<html>
<head>
<script type="text/jsx" src="https://mydomain/firstWidget"></script>
</head>
<body>
<p>Testing React Widget</p>
<div id='app'></div>
</body>
</html>
但它没有在html
页面上呈现我的小部件。任何人都可以请建议我是否遗漏了什么?