我从博客中提取JSON数据,然后使用帖子的网址加载帖子内容和内容。
截至目前,它正好加载帖子内容,但不会加载图片。我认为这是因为博客有一个延迟加载插件。我需要网站的插件,但有没有一种方法我仍然可以加载图像而无需加载整个网页?
<img src="http://www.blog.com/wp-content/plugins/lazy-load/images/1x1.trans.gif" data-lazy-src="actual_imageurl" width="320" height="480" />
<noscript><img src="actual_imageurl" width="320" height="480" /></noscript>
另一种解决方法是强制webView加载<noscript>
,但我也无法解决这个问题。