码迷,mamicode.com
首页 >  
搜索关键字:exported activity does not require permission    ( 24508个结果
less
style标签内使用全局less变量 定义变量 // index.less @color-default: #30b985 npm install style-resources-loader vue-cli-plugin-style-resources-loader -D 使用style-reso ...
分类:其他好文   时间:2021-03-06 14:20:44    阅读次数:0
Spring 中事务控制的 API 介绍
PlatformTransactionManager 此接口是 spring 的事务管理器,它里面提供了我们常用的操作事务的方法 // 获取食物状态信息 TransactionStatus getTransaction(TransactionDefinition definition) // 提交事 ...
分类:编程语言   时间:2021-03-05 13:11:16    阅读次数:0
NodeJS学习(三)
art-template模板引擎 在命令行工具中使用 npm install art-template 命令进行下载 使用const template = require('art-template')引入模板引擎 告诉模板引擎要拼接的数据和模板在哪 const html = template(‘模 ...
分类:Web程序   时间:2021-03-05 12:55:36    阅读次数:0
微信扫码关注登录
1、安装easywechat composer require "overtrue/laravel-wechat:^6.0" 2、生成配置文件 php artisan vendor:publish --provider="Overtrue\LaravelWeChat\ServiceProvider" ...
分类:微信   时间:2021-03-04 13:25:03    阅读次数:0
使用 express 创建服务器、epress 模块中路由的使用步骤、express 如何获取静态资源、express 中如何使用模板引擎、说明模板引擎的常用语法
1-使用 express 创建服务器 var express=require('express') var app=express() app.get('/',(req,res)=>{ res.send('express') }) app.listen(3000,()=>{ console.log( ...
分类:其他好文   时间:2021-03-04 13:14:04    阅读次数:0
webpack4.X之tapable实例对象AsyncParallelHook源码
模拟手写AsyncParallelHook源码部分。 let Hook = require('./Hook.js') class HookCodeFactory { args({ after, before } = {}) { let allArgs = this.options.args if ( ...
分类:Web程序   时间:2021-03-02 12:26:20    阅读次数:0
大数据概述
1.用图表描述Hadoop生态系统的各个组件及其关系。 2.阐述Hadoop生态系统中,HDFS, MapReduce, Yarn, Hbase及Spark的相互关系。 Hadoop对应于Google三驾马车:HDFS对应于GFS,即分布式文件系统,MapReduce即并行计算框架,HBase对应于 ...
分类:其他好文   时间:2021-03-02 12:20:23    阅读次数:0
PHP文件包含总结
1.文件包含小知识 1.1 包含函数 PHP共有4个与文件包含相关的函数: include require include_once require_once include与include_once的区别: (1)include:会将指定的文件载入并执行里面的程序;重复引用的情况下加载多次。 例如 ...
分类:Web程序   时间:2021-03-02 12:04:00    阅读次数:0
node.js 写文件
var str = 'node.js'; var fs = require('fs'); fs.writeFile('./a.txt',str,function(err){ if(err==null){ console.log('恭喜你,写入成功') }else{ console.log(err); ...
分类:Web程序   时间:2021-03-02 11:49:45    阅读次数:0
WebFlux之Websocket
协议 参考 https://www.cnblogs.com/nuccch/p/10947256.html WebSocket是基于TCP的应用层协议,用于在C/S架构的应用中实现双向通信,关于WebSocket协议的详细规范和定义参见rfc6455。 需要特别注意的是:虽然WebSocket协议在建 ...
分类:Web程序   时间:2021-02-27 13:25:19    阅读次数:0
24508条   上一页 1 ... 14 15 16 17 18 ... 2451 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!