码迷,mamicode.com
首页 >  
搜索关键字:exported activity does not require permission    ( 24508个结果
文件写入流
let fs = require('fs'); // 1 创建写入流 // fs.createWriteStream(文件路径,[可选择的配置操作]) // 2 let ws = fs.createWriteStream("hello.txt",{flag:'w',encoding:"utf8"}) ...
分类:其他好文   时间:2021-06-15 17:37:58    阅读次数:0
fs.js 读取目录 写入内容 和删除 目录
let fs = require('fs') // 封装 异步读取文件 function fsRead(path){ return new Promise(function(resolve,reject){ fs.readFile(path,{flag:"r",encoding:"utf-8"},f ...
分类:Web程序   时间:2021-06-15 17:32:36    阅读次数:0
昆虫识别APP开发进展(三)
昆虫检测下一步想法 视频识别优化集成 之前采用的主app调用另一个module的activity来实现的视频识别技术,经过一番操作后,将其对应的cmake文件与对应的模型整合到一起来使用 不再需要调用另一个app,节省了跳转的复杂以及app的容量进行了大量的缩减 视频识别界面勾勒 具体想法 实时展示 ...
分类:移动开发   时间:2021-06-13 09:40:05    阅读次数:0
安装nginx出错the HTTP rewrite module requires the PCRE library
问题描述 报错信息如下所示: ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrit ...
分类:Web程序   时间:2021-06-11 19:17:07    阅读次数:0
个人冲刺(二)——体温上报app(二阶段)
冲刺任务:完成app首页、第二页面和特殊情况的页面布局 activity_main.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res ...
分类:移动开发   时间:2021-06-11 18:12:07    阅读次数:0
thinkphp6 workerman 定时器操作控制器的方法
一、安装workman composer require workerman/workerman 二、创建 Timer 命令 php think make:command Timers 三、实现Timer <?php declare (strict_types = 1); namespace app ...
分类:Web程序   时间:2021-06-11 17:46:22    阅读次数:0
fragment与active通讯
Activity与Fragment之间的传值问题 Activity传值给Fragment 添加Fragment的Activity: https://blog.csdn.net/xingchenhy/article/details/81356400 ...
分类:其他好文   时间:2021-06-10 18:18:57    阅读次数:0
dart-sass编译element-ui打包出来的icon乱码的解决方案
最近负责的项目用的是element-ui库,sass编译用的是官网推荐的dart-sass,但是项目上线后会出现偶尔乱码的情况 通过检查发现,icon那里的content变成奇怪的字符了 原因 分析了一下这个问题出现的原因,如果一般使用不会出现这个问题,因为一般引入的是element-ui的css文 ...
分类:其他好文   时间:2021-06-10 17:43:55    阅读次数:0
Xhorse VVDI2 V7.0.2 Software Update Feature
Xhorse VVDI2 V7.0.2 software supports unlock FEM/BDC directly for ISTA V4.28.41 version. *** VVDI2 V7.0.2*** 2021-06-08*** Require firmware V7.0.0**** ...
分类:其他好文   时间:2021-06-09 15:27:05    阅读次数:0
一.node.js中基本的响应信息
const express = require("express"); //创建服务器 var app = express(); //配置服务器的端口 app.listen(8080); app.get("/login",(req,res)=>{ //普通响应 // res.end("今天天气好晴朗 ...
分类:Web程序   时间:2021-06-08 23:39:34    阅读次数:0
24508条   上一页 1 2 3 4 5 6 ... 2451 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!