Open Live Writer已停止工作的解决办法

 

在WordPress和cnblogs之间切换,搭Open Live Writer 出现“已停止工作”故障。机器都是64bit Win7,百度和gg各种搜,真是太浪费时间。工具的意思就是用好用的,用能用的。

 

解决办法:换版本,下载OLW_0.5.00

 

附→可能有用的资源:

1、园里的 OLW配置教程

2、代码高亮纯CSS版

 

效果:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// bad
function
() {
 
var _this = this
;
 
return function
() {
    console.log(_this);
  };
}

// good
function
() {
 
return function
() {
    console.log(
this
);
  }.bind(
this
);
}

 

就说到这里,都是工具,拿出来意思意思~

posted @ 2017-09-01 15:52  Marhey  阅读(325)  评论(0)    收藏  举报