我将redux
与react-native-sqlite-storage
一起使用。首先,我需要从api调用中获取数据,然后将其保存在本地数据库中。我可以使用redux获取数据。但是如何使用redux将数据保存在react-native-sqlite-storage中?如何使我的动作创作者?以下代码无需使用redux就可以达到预期的效果。
foodTblCreate = () => {
db.transaction(function(txn) {
txn.executeSql(
"SELECT name from sqlite_master WHERE type='table' AND name='table_food'", [],
function(tx, res) {
alert(`table_food is : ${res.rows.length}`);
if (res.rows.length === 0) {
txn.executeSql('DROP TABLE IF EXISTS table_food', []);
txn.executeSql(
"CREATE TABLE IF NOT EXISTS table_food(m_id INTEGER PRIMARY KEY AUTOINCREMENT, m_name VARCHAR(50), m_unit VARCHAR(250), cat_id VARCHAR(5), m_cal VARCHAR(6))",
[],
(tx, results) => {
for(var i=0; i<categoryArr.length; ++i) {
var cat_id = categoryArr[i].id;
for(var j=0;j<nutrition[cat_id].length; ++j) {
var m_name = nutrition[cat_id][j].name;
var m_unit = nutrition[cat_id][j].unit;
var cat_id = cat_id;
var m_cal = nutrition[cat_id][j].unit;
tx.executeSql(
"INSERT INTO table_food(m_name, m_unit, cat_id, m_cal) VALUES (?,?,?,?)",
[m_name, m_unit, cat_id, m_cal],
(tx, results) => {
alert('tableFoodData : '+JSON.stringify(results));
}
);
}
}
(error) => {
alert("Got an error in table_food"+JSON.stringify(error));
if (error) {
alert(JSON.stringify(error));
}
}
}
);
}
}
);
(error) => {
alert("Got an error"+JSON.stringify(error));
if (error) {
alert(JSON.stringify(error));
}
}
});
}
现在我的问题是我是否可以在actionCreator中使用循环并将整个代码放入actionCreator中,从而破坏STARTED,SUCCESS,FAIL中的过程。 或者在将数据保存到本地存储时不应该使用redux。任何帮助都将不胜感激。预先感谢。