我嘗試在本地.html
文件加載到WebView
陣營本地:(陣營母語)加載本地HTML文件到的WebView
// load local .html file
const PolicyHTML = require('./Policy.html');
// PolicyHTML is just a number of `1`
console.log('PolicyHTML:', PolicyHTML);
// will cause an error: JSON value '1' of type NSNumber cannot be converted to NSString
<WebView html={PolicyHTML} />
的.html
文件應被理解爲一個字符串,而不是作爲一種資源代表。
如何將.html
文件加載到WebView
的React Native中?
順便說一句,那些來自require()
的資源代表的類型是什麼?是number
?
您是否找到了解決方案?請更新正確答案。 – Rai
@Rai還沒有。 :( –