欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

如何在瀏覽器onClick of React按鈕打開PDF?

老白2年前8瀏覽0評論

我想實現一個簡單的按鈕,將在瀏覽器中打開我的resume.pdf文件,供用戶查看和下載。我如何在react中實現這一點?

& ltbutton className = & quot簡歷& quotonClick = { handle click()} & gt;簡歷& lt/button & gt;

這將在新標簽中打開PDF:

function handleClick()
{
     window.open("example.com/path/to/resume.pdf","_blank");
}

我回答晚了,但可能對別人有用。下面的代碼塊對我有用-

import {Linking} from "react-native";

//other required code
onPress={() => Linking.openURL('https://example.com/path/to/resume.pdf","_blank')}>