私は最後の数日を反応native-html-to-pdf(https://github.com/christopherdro/react-native-html-to-pdf)、反応ネイティブメール(chirag04) -view-pdf(by cnjon)PDFを生成し、React Nativeを表示または電子メールで送信しようとしています
私がまだ試してはいないparkerdanの反応ネイティブメールの別のバージョンがありますが、chrirag04のバージョンは基本的にすべてのプロジェクトを壊してしまい、アンインストールするのに苦労しました。
react-native-html-to-pdfはエラーを生成していないようですが、pdfにアクセスできないようです。ここで私が実行しているコードのスニペット:
import RNHTMLtoPDF from 'react-native-html-to-pdf';
import PDFView from 'react-native-pdf-view';
...
createPDF() {
var options = {
html: '<h1>PDF TEST</h1>', // HTML String
// ****************** OPTIONS BELOW WILL NOT WORK ON ANDROID **************
fileName: 'test', /* Optional: Custom Filename excluded extention
Default: Randomly generated
*/
directory: 'docs', /* Optional: 'docs' will save the file in the `Documents`
Default: Temp directory
*/
height: 800, /* Optional: 800 sets the height of the DOCUMENT that will be produced
Default: 612
*/
width: 1056, /* Optional: 1056 sets the width of the DOCUMENT that will produced
Default: 792
*/
padding: 24, /* Optional: 24 is the # of pixels between the outer paper edge and
corresponding content edge. Example: width of 1056 - 2*padding
=> content width of 1008
Default: 10
*/
};
RNHTMLtoPDF.convert(options).then((filePath) => {
AlertIOS.alert(
'creat pdf',
'filePath=' + filePath
);
return (
<PDFView ref={(pdf)=>{this.pdfView = pdf;}}
src={filePath}
onLoadComplete = {(pageCount)=>{
this.pdfView.setNativeProps({
zoom: 1.5
});
}}
/>
)
});
};
以降、私はそれを呼び出すコード内で:
<TouchableHighlight onPress={this.createPDF} style={styles.button}>
<Text>create pdf </Text>
</TouchableHighlight>
を私はAlertIOSを取得し、と有効なファイルパスのようなものです(パスを確認するためのヒントはすべて正しいことがわかります) それだけですが、私はtest.pdfドキュメントをどこにも見つけられません。 誰かが私が間違っていることを伝えることはできますか?
多くのおかげで、 Cheufte
コンストラクタでメソッドをバインドしていますか?そうでない場合は、あなたのonPressを 'onPress = {this.createPDF.bind(this)}'に変更し、それがあなたの問題かどうか確認してください。 –
マットありがとうございます。それは何の違いもありません。アラートは、RNHTMLtoPDF.convert関数が期待どおりに起動されたことを示します。私はコマンドラインで与えられたファイルパスをタイプし、ドキュメントを見つけました。だから私は私の質問は、この文書をどのように使うことができると思いますか? pdfviewでどのように表示できますか? – cheufte