我想實現一個簡單的按鈕,將在瀏覽器中打開我的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')}>
上一篇vue emit 跨層級
下一篇C語言把數組轉為json