- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个具有图像ID,名称和图像本身(base64)的数组。在某些情况下,该ID将匹配,因此它需要使用一个带有修订号的不同过程作为参数。但是它们必须顺序运行,以便知道id是否已经存在。
我有一个承诺,可以做所有这一切,并且每次都需要调用,但是我似乎无法找出执行此操作的最佳方法。在线上的某些想法正在使用“减少”功能,但不确定其工作原理。
代码是:
function resetImagesToPouch(image, id, imageName) {
return new Promise(function (resolve, reject) {
var rev;
var imageType;
// check if attachment already exists
DB_TaskImages.get(id, { attachments: true }).then(function (doc) {
rev = doc._rev; // Get the revision number since we are updating and adding attachment to existing doc.
DB_TaskImages.putAttachment(id, imageName, rev, image, "image/jpeg").then(function () {
console.log("Attachment added successfully");
return;
}).then(function () {
resolve();
}).catch(function (err) {
reject(err);
});
return;
}).catch(function (err) {
if (err.status = '404') { // if this is a new document - add new attachment
//imageType = GetImageTypeFromBase64(image);
DB_TaskImages.putAttachment(id, imageName, image, "image/jpeg").then(function () {
console.log("Attachment added successfully");
return;
}).then(function () {
resolve();
}).catch(function (err) {
reject(err);
})
}
});
}); // end promise
}
images = {
{id = "111", imageName='fighter.jpg', image='aaaaaddddd'},
{id = "111", imageName='horse.jpg', image='aaasdfssdaaddddd'},
{id = "112", imageName='cat.jpg', image='aasdfaaadsdfsfdddd'},
{id = "113", imageName='dog.jpg', image='aaasdfasfaaaddddd'},
{id = "1234", imageName='apple.jpg', image='aaaasdfasaaddddd'}
}
}).then(function () {
return ajaxCallForJsonTwoResults(URI_WorkIssues);
}).then(function (args) {
args[1].reduce(function (promise, image) {
return promise.then(function () {
return resetImagesToPouch(image);
});
}, Promise.resolve(args)).then(function () {
console.log('all done with images');
});
}).then(function (args) {
return callBulkDocLoad(DB_WorkIssues, args[0]);
}).then(function () {
var argsSaved;
...
// WorkIssues
}).then(function () {
if (DB_WorkIssues != null)
return DB_WorkIssues.erase();
}).then(function () {
return DB_WorkIssues = new PouchDB(DBNAME_WorkIssues, { auto_compaction: true });
}).then(function () {
return ajaxCallForJsonTwoResults(URI_WorkIssues);
}).then(function (args) {
argsSaved = args;
return args[1].reduce(function (promise, image) {
return promise.then(function () {
return resetImagesToPouch(image);
});
}, Promise.resolve(args)).then(function () {
console.log('all done with images');
});
}).then(function (args) {
return callBulkDocLoad(DB_WorkIssues, argsSaved[0]);
}).then(function () {
updateWorkIssuesJson();
loadTaskList(false);
var resetImagesToPouch = function resetImagesToPouch(_ref) {
var image = _ref.AttachmentFile,
id = _ref.JobNumber,
imageName = _ref.DocTitle;
return DB_TaskImages.get(id, {
attachments: true
}).then(function (doc) {
return DB_TaskImages.putAttachment(id, imageName, doc._rev, image, 'image/jpeg');
}).catch(function (err) {
if (err.status = '404') {
// if this is a new document - add new attachment
//var imageType = GetImageTypeFromBase64(image);
return DB_TaskImages.putAttachment(id, imageName, image, 'image/jpeg');
} else {
throw err;
}
});
};
var resetImagesToPouch = function resetImagesToPouch(_ref) {
var image = _ref.AttachmentFile,
id = _ref.JobNumber,
imageName = _ref.DocTitle;
return DB_TaskImages.get(id, {
attachments: true
}).then(function (doc) {
DB_TaskImages.putAttachment(id, imageName, doc._rev, image, 'image/jpeg').then(function () {
console.log("Success insert of multiple attachment");
return;
}).catch(function () {
console.log("Error in resetImagesToPouch: " + err);
showMsg("Error in resetImagesToPouch: " + err);
})
}).catch(function (err) {
if (err.status == '404') {
// if this is a new document - add new attachment
//var imageType = GetImageTypeFromBase64(image);
DB_TaskImages.putAttachment(id, imageName, image, 'image/jpeg').then(function () {
console.log("Successfull insert of multiple attachment");
return;
}).catch(function () {
console.log("Error in resetImagesToPouch: " + err);
showMsg("Error in resetImagesToPouch: " + err);
});
} else {
console.log("At throw error");
throw err;
}
});
};
// TaskImages
}).then(function () {
if (DB_TaskImages != null)
return DB_TaskImages.erase();
}).then(function () {
return DB_TaskImages = new PouchDB(DBNAME_TaskImages, { auto_compaction: true });
// TaskImages
}).then(function () {
if (DB_TaskImages != null)
return DB_TaskImages.destroy();
}).then(function () {
return DB_TaskImages = new PouchDB(DBNAME_TaskImages, { auto_compaction: true });
// WorkIssues
}).then(function () {
if (DB_WorkIssues != null)
return DB_WorkIssues.erase();
}).then(function () {
return DB_WorkIssues = new PouchDB(DBNAME_WorkIssues, { auto_compaction: true });
}).then(function () {
return ajaxCallForJsonTwoResults(URI_WorkIssues);
}).then(function (args) {
argsSaved = args;
console.log("Before the reduce");
return args[1].reduce(function (promise, image) {
console.log("After the reduce and before the promise.then");
return promise.then(function () {
console.log("Inside the promise.then and before the resetImagesToPouch");
return resetImagesToPouch(image).then(function () {
console.log('Image written to Pouch successfully');
}).catch(function (err) {
console.log("Error in resetImagesToPouch with err: " + err);
});
console.log("After the resetImagesToPouch");
});
console.log("Before the Promise.resolve");
}, Promise.resolve(args)).then(function () {
console.log('all done with images');
});
}).then(function (args) {
console.log("Before the callBulkDocLoad");
if (argsSaved[2].length > 0) {
console.log("Ajax issue with err: " + argsSaved[2][0]);
msg = "Ajax issue with err: " + argsSaved[2][0];
}
return callBulkDocLoad(DB_WorkIssues, argsSaved[0]);
}).then(function () {
console.log("Before the updateWorkIssuesJson");
updateWorkIssuesJson();
loadTaskList(false);
function resetImagesToPouch(_ref) {
var image = _ref.AttachmentFile,
id = _ref.JobNumber,
imageName = _ref.DocTitle;
return new Promise(function (resolve, reject) {
var rev;
var imageType;
// check if attachment already exists
DB_TaskImages.get(id, { attachments: true }).then(function (doc) {
rev = doc._rev; // Get the revision number since we are updating and adding attachment to existing doc.
DB_TaskImages.putAttachment(id, imageName, rev, image, "image/jpeg").then(function () {
console.log("Attachment added successfully");
return;
}).then(function () {
resolve();
}).catch(function (err) {
reject(err);
});
return;
}).catch(function (err) {
if (err.status = '404') { // if this is a new document - add new attachment
//imageType = GetImageTypeFromBase64(image);
DB_TaskImages.putAttachment(id, imageName, image, "image/jpeg").then(function () {
console.log("Attachment added successfully");
return;
}).then(function () {
resolve();
}).catch(function (err) {
reject(err);
})
}
});
}); // end promise
}
最佳答案
一旦有了有效的数组,使用array.reduce很简单
let images = [
{ id: '111', imageName: 'fighter.jpg', image: 'aaaaaddddd' },
{ id: '111', imageName: 'horse.jpg', image: 'aaasdfssdaaddddd' },
{ id: '112', imageName: 'cat.jpg', image: 'aasdfaaadsdfsfdddd' },
{ id: '113', imageName: 'dog.jpg', image: 'aaasdfasfaaaddddd' },
{ id: '1234', imageName: 'apple.jpg', image: 'aaaasdfasaaddddd' }
]
resetImagesToPouch
以正确返回承诺
let resetImagesToPouch = ({image, id, imageName}) =>
DB_TaskImages.get(id, {
attachments: true
})
.then((doc) => DB_TaskImages.putAttachment(id, imageName, doc._rev, image, 'image/jpeg'))
.catch ((err) => {
if (err.status = '404') { // if this is a new document - add new attachment
//var imageType = GetImageTypeFromBase64(image);
return DB_TaskImages.putAttachment(id, imageName, image, 'image/jpeg');
} else {
throw err;
}
});
images.reduce((promise, image) => promise.then(() => resetImagesToPouch(image)), Promise.resolve())
.then(() => {
console.log('all done');
});
var resetImagesToPouch = function resetImagesToPouch(_ref) {
var image = _ref.image,
id = _ref.id,
imageName = _ref.imageName;
return DB_TaskImages.get(id, {
attachments: true
}).then(function (doc) {
return DB_TaskImages.putAttachment(id, imageName, doc._rev, image, 'image/jpeg');
}).catch(function (err) {
if (err.status = '404') {
// if this is a new document - add new attachment
//var imageType = GetImageTypeFromBase64(image);
return DB_TaskImages.putAttachment(id, imageName, image, 'image/jpeg');
} else {
throw err;
}
});
};
images.reduce(function (promise, image) {
return promise.then(function () {
return resetImagesToPouch(image);
});
}, Promise.resolve()).then(function () {
console.log('all done');
});
}).then(function () {
return ajaxCallForJsonTwoResults(URI_WorkIssues);
}).then(function (args) {
// add return here
return args[1].reduce(function (promise, image) {
return promise.then(function () {
return resetImagesToPouch(image);
});
}, Promise.resolve(args))
.then(function () {
console.log('all done with images');
// pass on args down the chain
return args;
});
}).then(function (args) {
return callBulkDocLoad(DB_WorkIssues, args[0]);
}).then(function () {
})
.then(() => ajaxCallForJsonTwoResults(URI_WorkIssues))
.then(([docs, images]) =>
images
.reduce((promise, image) =>
promise.then(() =>
resetImagesToPouch(image)),
Promise.resolve()
)
.then(() => docs)
)
.then(docs => callBulkDocLoad(DB_WorkIssues, docs))
.then(() => {
关于javascript - promise 从阵列顺序触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43319866/
我有一个关于将字符串分配给数组编号的问题。 我已经声明了字符串数组,例如。 String[] answer = {"yes", "no", "maybe"}; 如何在不使用这种方法的情况下将每个字符串
我正在为云数据库使用 Firebase 编写一个 Android 应用程序。它基本上是一个多项选择调查问题应用程序。导入到我的 Firebase { "multiple_choice" : {
我想将输入文件中的以下行存储到 3D 数组中(不包括第一行。)第一行表示后续行的数量。 3 4 9368 86 843 23224 4 7323 2 2665 2665 8447 47 843 527
这是我关于容器的小大问题,尤其是数组。 我正在编写一个物理代码,主要操纵一大组(> 1 000 000)“粒子”(每个粒子有 6 个 double 坐标)。我正在寻找最佳方式(在性能方面)来实现一个类
我有一个超链接,我需要在 Angular 4 中创建一个路由器链接。我有很多部分指向 url,其中一部分是一个数组。我不确定如何让数组将自己拆分成 routerlink 数组的部分。 以这个人为的例子
大家好,我有一个轮子选择器在工作,但目前它正在为所有轮子提取 0-9 的数字。我希望能够设置值而不是 0-9 我希望它是从数组或字符串中提取的单词,所以我可以输入它们 myslef 因为我不确定目前从
我正在尝试使用 Spotify API 并进入数组。 const App = () => { const [isLoading, setIsLoading] = useState(true);
我尝试创建 Tic Tac Toe,我能够填满我的棋盘,并且能够检查行和列以确定谁获胜。然而,我需要一些帮助来检查对角线,看看谁赢了。这是我到目前为止所拥有的。我是初学者,所以请不要让代码太难。 检查
--in the package type t_array is array (natural range <>) of std_logic_vector (7 downto 0); type p_a
我在访问字符串数组时遇到困难。它被声明为私有(private)数组并填充在类的构造函数中。我定义了一个 Get 函数。问题是当我在编译时调用此函数时出现错误,提示我无法访问在类中声明的私有(priva
无法弄清楚推送到 Moose 数组的语法(我确信这很明显,而且我很愚蠢)。这是 this question 的延续.在我看来,对于我的具体情况,我需要的不仅仅是一个简单的值。尝试使用 Moose 式的
我有一个 3d 数组,我正在尝试从中获取刺伤列表。换句话说,给定数组: t = np.array([[[1,2],[3,4]],[[5,6],[7,8]],[[9,10],[11,12]]]) arr
我正在寻找绘制一个 3 维数组。有没有一种方法可以直接输入数组,绘制体素并在 3d 数组中的位置产生的坐标处绘制实际值(颜色)?到目前为止我发现的所有方法(例如 ax.voxels、mlab.poin
我正在尝试使用 Knockout 创建一个简单的电子表格。我试图让每个单元格都可观察,以便在发生变化时,我可以评估值并进行相应的计算。因此,如果他们在单元格中输入 6+7,我可以评估并将该值更改为总数
我有当前时间和这组时间。我想计算出下一次与当前时间最接近的时间。 let date = NSDate() let calendar = NSCalendar.currentCalendar() let
我想在我的小程序中创建一个二维图像数组。我需要一个 4x4 网格,其中有 4 个图像,每个图像 4 个随机分布在阵列中。这里有一些答案,但我不明白如何使用它们。 最佳答案 您可以声明 Image[][
基本上,此代码列出了“可用”挑战,其中 complete = 0 并在每个列表中都有一个接受submit 按钮。到目前为止,我一次只能列出一项,因为列出的多个按钮无法识别匹配 ID $echo 任何人
我正在尝试创建一个带有动态变量的过滤数组。我创建一个包含过滤器键的数组,然后创建一个过滤后的数组,该数组只应返回与第一个数组中的键匹配的项目。 带有过滤器键的数组:$scope.participant
我是一个相对年轻的开发人员,我对一些事情感到困惑。 这是我的代码: function pairElement(str) { var arr = []; var pairs = [
我正在 Angular 中创建一个函数,我想抓取所有博客文章,其类别与单击的按钮相匹配,我的 Firebase 中有 3 个不同的字段,标题为类别 1、类别 2 和类别 3。例如,当用户单击新闻通讯时
我是一名优秀的程序员,十分优秀!