我以后遇到问题
Webview在Android 5.0以上工作。但Android低于5.0。它错误
Uncaught SyntaxError: Unexpected identifier From line 46 at https:/"example"/rader/app.js
这是 app.js
中的代码function viewData() {
getData().done(function(data){
radar_json = JSON.parse(data);
console.log('---radar_json---');
console.log(radar_json);
// arrayæ•´å½¢
temp_time_arr = [];
for(let ra of radar_json.radar) { // This is line 46
if(ra) {
ra.dataList.forEach(function(item, index){
//time = time.replace(/-/g, '/');
temp_time_arr.push(new Date(item.datatime).getTime());
})
}
}
任何想法?你能帮帮我吗?