React Rails "идентификатор 'Set' undefined" - PullRequest
0 голосов
/ 28 мая 2018

Я пытаюсь выполнить рендеринг на стороне сервера с помощью rails, используя webpacker & Reaction-rails.У меня нет проблем с рендерингом на стороне клиента, но я получил следующее исключение при рендеринге на стороне сервера.

ExecJS::ProgramError in Static#index

identifier 'Set' undefined

application.html.erb

<!DOCTYPE html>
<html>
  <head>
    <title>ReactExample</title>
    <%= csrf_meta_tags %>
    <%= csp_meta_tag %>

    <%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track': 'reload' %>
    <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
    <%= javascript_pack_tag 'application' %>
  </head>

  <body>
    <%= yield %>
  </body>
</html>

index.html.erb

<%= react_component('hello', {}, {prerender: true}) %>

application.js

/* eslint no-console:0 */
// This file is automatically compiled by Webpack, along with any other files
// present in this directory. You're encouraged to place your actual application logic in
// a relevant structure within app/javascript and only use these pack files to reference
// that code so it'll be compiled.
//
// To reference this file, add <%= javascript_pack_tag 'application' %> to the appropriate
// layout file, like app/views/layouts/application.html.erb

// Support component names relative to this directory:
var componentRequireContext = require.context("components", true)
var ReactRailsUJS = require("react_ujs")
ReactRailsUJS.useContext(componentRequireContext)

server_rendering.js

// By default, this pack is loaded for server-side rendering.
// It must expose react_ujs as `ReactRailsUJS` and prepare a require context.
var componentRequireContext = require.context("components", true)
var ReactRailsUJS = require("react_ujs")
ReactRailsUJS.useContext(componentRequireContext)

1 Ответ

0 голосов
/ 12 мая 2019

Обновление с TheRubyRacer до современного механизма исполнения JavaScript.

TheRubyRacer зависит от LibV8 (бита, обеспечивающего работу node.js), но заблокирован до версии 3 , сама LibV8уже на версии 7 .

Используйте современный гем JS, такой как Mini_Racer , и эта проблема исчезнет.

...