我正在使用 sqlite 加载详细信息,如标题、演员、导演……我也在尝试加载电影海报。我不知道如何从 sqlite 引用图像。
我正在使用 javascript 并且不能使用 BLOB。
这是我用来提取内容的一些代码。
db.transaction(
function(tx) {
var rs = tx.executeSql('SELECT * FROM mydb');
r=""
switch (b){
case "title":
r += rs.rows.item(a).title
break;
case "actor":
r += rs.rows.item(a).actor
break;
case "director":
r += rs.rows.item(a).director
break;
case "genre":
r += rs.rows.item(a).genre
break;
case "rating":
r += rs.rows.item(a).rating
break;
case "detail":
r += rs.rows.item(a).detail
break;
case "image":
r += rs.rows.item(a).image
break;}
})
我可以只存储图像文件路径吗?