logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue 运行报错Node Sass could not find a binding for your current environment

出现:Node Sass could not find a binding for your current environment是因为项目中的sass依赖配置不是适合你的系统的,所以只要重新添加这个sass依赖就好了进入在终端中进入到项目文件夹中,然后输入npm rebuild node-sass这个命令就好了...

android 组件化架构读书笔记(四)事件总线

事件总线机制通过记录对象、使用监听者模式来通知对象各种事情。EventBus框架优点:开销小,代码更优雅,将发送者和接受者解耦。涉及4个部分:订阅者、发布者、订阅事件、事件总线。订阅者可以订阅多个事件,发布者可以发布任何事件,发布者同时也可以是订阅者。简单的使用步骤:https://github.com/greenrobot/EventBusP:订阅事件的对象在依附的Acitivity/Fragm

【android】报错:Cannot build for ABI: x86; no suitable splits configured: none; supported ABIs are: arme

运行项目到模拟器,报错:Cannot build for ABI: x86; no suitable splits configured: none; supported ABIs are: armeabi-v7a解决方法:在app模块的build.gradle中的android块中添加splitsandroid {...splits {abi {enable truereset()in

到底了