mirror of
https://github.com/leanote/desktop-app.git
synced 2025-10-15 23:55:50 +00:00
25 lines
871 B
JavaScript
Executable File
25 lines
871 B
JavaScript
Executable File
// 服务测试
|
|
|
|
var Notebook = require('notebook');
|
|
var Note = require('note');
|
|
var Api = require('api');
|
|
var Server = require('server');
|
|
|
|
/*
|
|
Notebook.addNotebook("1", "life");
|
|
Notebook.addNotebook("2", "生活");
|
|
Notebook.addNotebook("3", "工作");
|
|
Notebook.addNotebook("4", "life2", "1");
|
|
*/
|
|
|
|
Api.addNotebook({
|
|
Title: "哈哈"
|
|
}, function() {});
|
|
|
|
|
|
// Api.auth('c@a.com', 'abc123');
|
|
// var content = '<img src="http://localhost:9000/api/file/getImage?fileId=54c2083f99c37bea5f000001"> <img src="http://localhost:9000/api/file/getImage?fileId=54c2083f99c37bea5f000001">' + "\n" + '<img src="http://localhost:9000/api/file/getImage?fileId=54c2083f99c37bea5f000001">';
|
|
// var reg = new RegExp('<img *src="' + Api.leanoteUrl + '/api/file/getImage', 'g');
|
|
// content = content.replace(reg, '<img src="' + Server.localUrl + '/api/file/getImage');
|
|
// console.log(content);
|