我使用 ReactJS.Net 和 ASP.NET 5 创建了一个小型应用程序。如果我使用渲染组件服务器端@Html.React
并将其绑定到 MVC
@using System.Threading.Tasks
@using React.AspNet
@model Models.DashboardViewModel
@Html.React("MessageBoard", new
{
recentPosts = Model.RecentPosts
})
留言板.jsx
"use strict";
var MessageBoard = React.createClass({
render: function(){
return (<table className="table forum table-striped">
<thead>
<tr>
<th className="cell-stat"></th>
<th>Topic</th>
<th className="cell-stat text-center hidden-xs hidden-sm">Replies</th>
<th className="cell-stat-2x hidden-xs hidden-sm">Last Post</th>
</tr>
</thead>
<tbody>
{this.props.recentPosts.map(function(boardPost){
return <BoardPostRow post={boardPost}/>;
}, this)}
</tbody>
</table>)
}
});
这一切都很好。问题是当我去源代码时,没有 .js 文件所以我无法调试。对于一些简单的只读元素,这可能没问题。但是现在我想渲染一些包含状态的交互元素,一种用于在“留言板”上创建新帖子的表单。这是同一 *.cshtml 文件中的代码。
<div id="newPost"></div>
@section scripts
{
<script src="@Url.Content("~/scripts/Components/Board/boardPostForm.jsx")"></script>
<script src="@Url.Content("~/scripts/Components/Common/textInput.jsx")"></script>
<script>React.render(BoardPostForm({}), document.getElementById("newPost"))</script>
@Html.ReactInitJavaScript()
}
我在控制台中得到的错误是:
Uncaught SyntaxError: Unexpected token <
textInput.jsx:19 Uncaught SyntaxError: Unexpected token <
(index):69 Uncaught ReferenceError: BoardPostForm is not defined(anonymous function) @ (index):69
(index):70 [.NET] Warning: Each child in an array or iterator should have a unique "key" prop. Check the render method of MessageBoard. See http://fb.me/react-warning-keys for more information.
(index):71 [.NET] Warning: Unknown DOM property class. Did you mean className?
(index):71 Uncaught ReferenceError: MessageBoard is not defined
尝试读取 .jsx 似乎是一个错误,因为当我单击错误时它会将我带到渲染函数。我在这里想念什么?也许我需要将 jsx->js 转换作为构建过程的一部分(我正在使用 Gulp),而不是依赖 ReactJS.NET?