0

デモ同形のCycle.js / Hapi.jsアプリを作成しようとしていますが、サーバーでのレンダリング中に xstream で例外が発生して失敗します。ここで何がうまくいかないのですか?Cycle.js の isomorphic app exampleに基づいてアプリを作成しました。

トレースバックは次のようになります。

TypeError: Uncaught error: s[i]._add is not a function
    at CombineProducer._start (/Users/arve/Projects/hapi-cycle/node_modules/xstream/core.js:190:22)
    at Stream._add (/Users/arve/Projects/hapi-cycle/node_modules/xstream/core.js:976:19)
    at MapOperator._start (/Users/arve/Projects/hapi-cycle/node_modules/xstream/core.js:717:18)
    at Stream._add (/Users/arve/Projects/hapi-cycle/node_modules/xstream/core.js:976:19)
    at LastOperator._start (/Users/arve/Projects/hapi-cycle/node_modules/xstream/core.js:596:18)
    at Stream._add (/Users/arve/Projects/hapi-cycle/node_modules/xstream/core.js:976:19)
    at Stream.addListener (/Users/arve/Projects/hapi-cycle/node_modules/xstream/core.js:1050:14)
    at Object.streamSubscribe (/Users/arve/Projects/hapi-cycle/node_modules/@cycle/xstream-adapter/lib/index.js:39:16)
    at /Users/arve/Projects/hapi-cycle/node_modules/@cycle/base/lib/index.js:49:30
    at Array.map (native)

レンダリング コードは基本的に次のようになります。

import Cycle from '@cycle/xstream-run'
import xs from 'xstream'
import {html, section, h1, p, head, title, body, div, script, makeHTMLDriver,} from '@cycle/dom'
import serialize from 'serialize-javascript'
import Logger from '@arve.knudsen/js-logger'
let logger = Logger.get('server.rendering')

let wrapVTreeWithHtmlBoilerplate = ([vtree, context,]) => {
  return (
    html([
      head([
        title('Cycle Isomorphism Example'),
      ]),
      body([
        div('.app-container', [vtree,]),
        script(`window.appContext = ${serialize(context)};`),
        // script(clientBundle),
      ]),
    ])
  );
}

let main = (sources) => {
  let vtree = (
    section('.home', [
      h1('The homepage'),
      p('Welcome to our spectacular web page with nothing special here.'),
    ])
  )
  return {
    DOM: vtree,
  }
}

let renderIndex = (request, reply) => {
  let context = xs.of({})
  Cycle.run((sources) => {
    let vtree = main(sources).DOM
    let wrappedVTree = xs.combine(vtree, context)
      .map(wrapVTreeWithHtmlBoilerplate)
      .last()
    return {
      DOM: wrappedVTree,
    };
  }, {
    DOM: makeHTMLDriver((html) => {
      let wrappedHtml = `<!doctype html>${html}`
    }),
    context: () => {return context},
    PreventDefault: () => {},
  })
}

完全なソース コードはここにあります

Node v6.6.0、babel-node 6.14.0、Hapi 15.0.3、@cycle/dom 12.2.5、および @cycle/xstream-run 3.1.0 を使用して OS X で実行しています。さらに情報が必要な場合はお知らせください。

4

1 に答える 1

1

エラーの理由は、レンダリングされた VTree がストリームではなかったためです。コードを次のように変更しましたが、動作します。

let vtree = sources.context.map(({}) => {
   return (
    section('.home', [
      h1('The homepage'),
      p('Welcome to our spectacular web page with nothing special here.'),
    ])
  )
})
return {
  DOM: vtree,
}

呼び出し (元のsources.context.map同形の例から借用したもの) は、それvtreeがストリームであることを保証します。

于 2016-09-20T12:21:52.147 に答える