mirror of
https://github.com/leanote/desktop-app.git
synced 2025-10-16 08:01:53 +00:00
async noteContent, images, attachs
This commit is contained in:
4
node_modules/note.js
generated
vendored
4
node_modules/note.js
generated
vendored
@@ -1100,6 +1100,7 @@ var Note = {
|
||||
// 异步操作
|
||||
syncContentAndImagesAndAttachs: function(note) {
|
||||
var me = this;
|
||||
setTimeout(function() {
|
||||
// 内容
|
||||
console.log("syncContentAndImagesAndAttachs..................." + note.NoteId);
|
||||
me.getNoteContent(note.NoteId, function(noteAndContent) {
|
||||
@@ -1120,6 +1121,7 @@ var Note = {
|
||||
var attach = attachs[i];
|
||||
me.downloadAttachFromServer(note.NoteId, attach.ServerFileId, attach.FileId);
|
||||
}
|
||||
}, 500);
|
||||
},
|
||||
|
||||
// 同步图片
|
||||
@@ -1130,7 +1132,7 @@ var Note = {
|
||||
return;
|
||||
}
|
||||
console.log('syncImages..................');
|
||||
console.log(content);
|
||||
// console.log(content);
|
||||
// 得到图片id
|
||||
var reg = new RegExp(Evt.localUrl + "/api/file/getImage\\?fileId=(.{24})\"", 'g');
|
||||
// var a = 'abdfileId="xxx" alksdjfasdffileId="life"';
|
||||
|
Reference in New Issue
Block a user