您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何解決semantic-ui-react圖像組件不顯示圖像的問題,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
React提供了一種相當科學的開發Web應用前端視圖層的技術,借助于semantic-ui for React可以很容易地搭建起常用網頁開發中的UI組件,但是最近在分析其提供的各種組件時發現Image組件存在一個小問題,記錄于此。
import React from 'react' import { Grid, Image, } from 'semantic-ui-react' const ImageExampleLink = () => ( <Grid container stackable verticalAlign='middle'> <Grid.Row> <Grid.Column floated='left' width={4}> <Image bordered rounded size='small' src='./help.png' /> </Grid.Column> <Grid.Column floated='right' width={4}> <Image bordered rounded size='small' src='./help.png' /> </Grid.Column> </Grid.Row> <Grid.Row> <Grid.Column floated='right' > <Image size='mini' avatar src='./help.png' /> </Grid.Column> </Grid.Row> </Grid> ) export default ImageExampleLink
其中圖像文件的路徑位置沒有問題,但是運行中發現圖像死活不顯示,只顯示一個通用的系統提供的那種你常見的占位符形式。
然后,通過google瀏覽器搜索分析,發現了一個看似相近的題目「Semantic-UI Image properties not working with semantic-ui-react」(https://stackoverflow.com/questions/44609711/semantic-ui-image-properties-not-working-with-semantic-ui-react)。
其實,上面的問題與我的不一樣,semantic-ui-react系統所使用的css文件我是的確導入了。我的有關安裝及使用方式是這樣的:
npm install semantic-ui-react --save
npm install semantic-ui-css
npm WARN ajv-keywords@3.2.0 requires a peer of ajv@^6.0.0 but none is installed. You must install peer dependencies yourself.
然后在index.js里導入
import 'semantic-ui-css/semantic.min.css';
上述步驟沒有什么問題,因為我使用其他許多組件(我是在app.js中進行測試使用各種組件的)是沒有問題的。
在上面的stackoverflow.com問題中,那位回答者的回答是“Semantic UI React requires a Semantic UI' CSS, you forgot to setup it, here is instuctions.”。我跟蹤這個鏈接過去,只是簡單地轉入了官方展示網站,沒有什么,我早就比較熟悉這個地方了。但是,受到此處的一點啟動,我把代碼中的src屬性的地址形式變換了一個,使用了JSX語言推薦的如下表達形式。
import React from 'react' import { Grid, Image, } from 'semantic-ui-react' import help from './help.png'; const ImageExampleLink = () => ( <Grid container stackable verticalAlign='middle'> <Grid.Row> <Grid.Column floated='left' width={4}> <Image bordered rounded size='small' src={help} /> </Grid.Column> <Grid.Column floated='right' width={4}> <Image bordered rounded size='small' src={help} /> </Grid.Column> </Grid.Row> <Grid.Row> <Grid.Column floated='right' > <Image size='mini' avatar src={help} /> </Grid.Column> </Grid.Row> </Grid> ) export default ImageExampleLink
請注意上面代碼最初的import語句和改進后的Image組件的src屬性值的表達方式。再試運行,OK!
感謝你能夠認真閱讀完這篇文章,希望小編分享的“如何解決semantic-ui-react圖像組件不顯示圖像的問題”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。