摘要:
1、之前搞了一个vue的项目,最近运行的时候报错: Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime 2、一看就是node升级引起的问题,但如何处理 阅读全文
摘要:
select a.* from A as a where typeid=2 and (select count(*) from A where typeid=2 and ftypeid = a.ftypeid and id > a.id)<8 order by a.ftypeid,a.id desc 阅读全文
摘要:
runOnUiThread()是Activity类中的方法,它用于从子线程中切换到主线程来执行一些操作,比如更新UI。 new Thread(new Runnable() { @Override public void run() { //do something takes long time i 阅读全文