Tôi có một vấn đề tương đối đơn giản là cố gắng thêm tập lệnh nội tuyến vào thành phần React. Những gì tôi có cho đến nay:
'use strict';
import '../../styles/pages/people.scss';
import React, { Component } from 'react';
import DocumentTitle from 'react-document-title';
import { prefix } from '../../core/util';
export default class extends Component {
render() {
return (
<DocumentTitle title="People">
<article className={[prefix('people'), prefix('people', 'index')].join(' ')}>
<h1 className="tk-brandon-grotesque">People</h1>
<script src="https://use.typekit.net/foobar.js"></script>
<script dangerouslySetInnerHTML={{__html: 'try{Typekit.load({ async: true });}catch(e){}'}}></script>
</article>
</DocumentTitle>
);
}
};
Tôi cũng đã thử:
<script src="https://use.typekit.net/foobar.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
Không có cách tiếp cận dường như để thực hiện các kịch bản mong muốn. Tôi đoán đó là một điều đơn giản tôi đang thiếu. Ai có thể giúp đỡ?
PS: Bỏ qua foobar, tôi có một id thực sự đang sử dụng mà tôi không cảm thấy muốn chia sẻ.
DocumentTitle
.