在头盔中,我的页面来源没有改变

时间:2019-06-11 14:13:40

标签: reactjs preact react-helmet

我在我的项目中使用了头盔。当呈现我的Contact组件时,我想更改标题并添加链接和脚本标签,当我在控制台日志“ onChangeClientState”上显示其所提供的链接和脚本,但未在我的页面源代码中显示(我想要的东西) )。

  import { h } from "preact";
  import styles from "./styles.css";
  import Helmet from "preact-helmet";

  const ContactForm = () => {
    return (
      <div class={styles.root}>
        <Helmet
          title="Project"
          meta={[
            {
              name: "viewport",
              content:
                "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
            }
          ]}
          script={[
            {
              src: "http://example.js",
              type: "text/javascript"
            }
            ]}
        // onChangeClientState={(newState) => console.log(newState)}
        />
        <iframe
          class={styles.iframe}
          id="full"
          width="100%"
          height="100%"
          frameborder="0"
          src="https://exampleform.com"
        />
      </div>
    );
  };

  export default ContactForm;

0 个答案:

没有答案