Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.1k views
in Technique[技术] by (71.8m points)

javascript - How to inject a React component asynchronously?

I'm trying to use this library https://developers.timekit.io/docs/booking-widget-v2#getting-started and in the instruction set it mentioned: "This is ideal for usage in single page applications like Angular.js, where you'd injecting async in your template and control it through JS in your controller/directive/component code." instantiation instruction How exactly do I do that? This is what my approach so far, but it is not working.

import React from 'react';
import TimekitBooking from 'timekit-booking';

const App = () => {
  let widget = new TimekitBooking();
  return (
    <div>
      <h1>Hello</h1>
      {widget
        .init({
          app_key: 'test_widget_key_0rZsWpUP40J8jXFgU6odRQexukqAxCYu',
          project_id: 'fc81fa67-eaef-4c49-af64-f908fced2714',
        })
        .then(() => {
          return <div id="bookingjs"></div>;
        })}
    </div>
  );
};

expor

t default App;


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...