XiuBinWang

Results 11 comments of XiuBinWang

> isInitialized这个方法是+initialized的判断方法,来判断当前类是否初始化过。 > 因为+initialize方法实际上是在alloc方法之前调用的。很有可能会发生+initialize 中调用了 storeWeak 方法,而在 storeWeak 方法中 weak_register_no_lock 方法中用到对象的 isa 还没有初始化完成的情况 但是源码是这样的: ``` objc Class cls = newObj->getIsa(); if (cls != previouslyInitializedClass && !((objc_class *)cls)->isInitialized()) { SideTable::unlockTwo(oldTable, newTable);...

[https://github.com/coolbeet/CBStoreHouseRefreshControl](https://github.com/coolbeet/CBStoreHouseRefreshControl)

如果关掉busuanzi,就会出现这种情况。 至于为什么,我对前端不太了解,这个原因没有排查。

@forsigner 如果不开打赏,才会出现这种情况。 你平时工作好忙啊,过年了居然有空了~

您好,请问下 ``` # token # token 需要用 `#` 符号分割 # 例子: 5#c31bffc137f44faf7efc4a84da827g7ca2cfeaa ``` 用 `#` 号分割是什么意思呢? 5又是代表什么呢?

可是即便按照格式分割,照样会被删除:https://github.com/sanyucz/blog/blob/gh-pages/config.yml

好吧,现在Github不会删除我的token了~ 但是问题回来了,控制台log: ``` (index):1 Uncaught ReferenceError: $config is not defined at (index):1 (anonymous) @ (index):1 build.f431db64.js:1 Uncaught TypeError: Cannot read property 'token' of undefined at Object. (build.f431db64.js:1) at t (build.f431db64.js:1)...

非常感谢您的帮助!

我fork了你的代码,只修改了note备份的Git地址。

可是,即便我修改了 `git.js` 文件中的 `gitUrl` ``` const path = require('path'); const fs = require('fs'); const exec = require('child_process').exec; const gitUrl = '[email protected]:sanyucz/note-source.git'; const noteDir = path.join(process.cwd(), 'note'); ``` 最后只是会Git提交我这整个工程到我的工程远程仓库,而不是把note文件夹下的文件提交推送到 `[email protected]:sanyucz/note-source.git` 这里