我正在使用 React 和hypernova(带有php 绑定)来执行一些 React 组件的服务器端渲染。以下是我的以下测试组件和超新星的响应。
测试.js
import React from 'react';
import { renderReact } from 'hypernova-react';
class Test extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<p onClick={() => alert('hey')}>click me</p>
);
}
}
export default renderReact('Test', Test);
超新星反应
WF\Hypernova\JobResult Object
(
[error] =>
[html] =>
<div data-hypernova-key="Test" data-hypernova-id="e5af0b95-2a31-4ce4-8e36-808605fd4115">
<p data-reactroot="">click me</p>
</div>
<script type="application/json" data-hypernova-key="Test" data-hypernova-id="e5af0b95-2a31-4ce4-8e36-808605fd4115">
<!--{"prop1":"a","prop2":"b"}-->
</script>
[success] => 1
...
)
如上图,props
都被成功传递了,但是onClick
handler却无处可寻。但是,它肯定存在于转译的代码中。
捆绑.js
// code before and after class omitted for brevity
var Test = function (_React$Component) {
_inherits(Test, _React$Component);
function Test(props) {
_classCallCheck(this, Test);
return _possibleConstructorReturn(this, (Test.__proto__ || Object.getPrototypeOf(Test)).call(this, props));
}
_createClass(Test, [{
key: 'render',
value: function render() {
return _react2.default.createElement(
'p',
{ onClick: function onClick() {
return alert('hey');
} },
'click me'
);
}
}]);
return Test;
}(_react2.default.Component);
exports.default = (0, _hypernovaReact.renderReact)('Test', Test);
我能在这个问题上找到的唯一东西是在github 问题跟踪器中,有人在其中抱怨同样的事情,但显然<p>
标签上不应该有事件处理程序;它应该存在于 React 交付的代码中。我还尝试使用带/不带箭头符号的类属性分配单击处理程序(在后一种情况下显式绑定在构造函数中)。我在捆绑的 React 代码中添加了一个<script>
标签,但这似乎没有什么不同。
这是一个错误,还是我做错了什么?