请看一下。我收到错误"未捕获类型错误:无法读取属性' title'"。
这是代码的样子:
db.transaction(function(transaction) {
transaction.executeSql('INSERT INTO post_details(post_title, post_date,post_comment,post_content,post_categories,post_image) VALUES ("'+data.posts[i].title+'","'+data.posts[i].date+'","'+data.posts[i].comment_count+'","'+data.posts[i].content+'","'+data.posts[i].categories+'","'+data.posts[i].thumbnail_images.full.url+'")',[], nullHandler,errorHandler);
});
这个"数据"是一个包含JSON数据的变量,我通过AJAX调用它。如果我正常提醒它,哪个正常返回。
谢谢!