计划将metaweblog
集成到markdown编辑器中,需要获取文章列表,可通过http获得页面内容,使用正则表达式分析的形式进行。
然后通过metaweblog
的get post指令,得到需要修改的文章内容,并实现修改
var urllib = require('urllib');
urllib.request('https://www.cnblogs.com/xbotao', function (err, data, res) {
if (err) {
throw err; // you need to handle error
}
console.log(res.statusCode);
console.log(res.headers);
// data is Buffer instance
//console.log(data.toString());
console.log('中文');
event.sender.send('convert2html', data.toString())
});
})