我想在「Xamarin形式」來顯示圖像,但我得到了以下錯誤:Xamarin表單圖像加載錯誤
Image Loading: Error getting stream for http://www.example.com/example.jpg *(example only)*: System.Net.Http.HttpRequestException: An error occurred while sending the request ---> System.Net.WebException: Error: NameResolutionFailure
我有圖片的URL測試,它能夠顯示在瀏覽器上。
下面是我在後臺代碼:
var imageSource = new UriImageSource { Uri = new Uri("http://www.Example.com/example.jpg") } ;
image.Source = imageSource;
而下面是我在XAML中使用代碼:
<Image x:Name="image" />
後,我谷歌的解決方案,我發現ModernHttpClient可能是一個解決方案,但我不知道如何實現它。
或者是不可能我可以解決錯誤,而不使用ModernHttpClient?
請指教!
'錯誤:NameResolutionFailure'無論你實際使用的網址,域名沒有解決.... – SushiHangover