import axios from "axios";//axios引入 import { Message } from "element-ui";//message组件引入 import router from "../router";//路由 // 创建axios实例 const service ...
分类:
移动开发 时间:
2021-06-19 18:40:48
阅读次数:
0
这次是事件聚合器的应用。 事件聚合器应用第一步:定义一个事件聚合器,应该是一个可访问的公共区域,例14为它做了一个core的项目。代码很简单: using Prism.Events; namespace UsingEventAggregator.Core { public class Message ...
分类:
其他好文 时间:
2021-06-13 09:52:36
阅读次数:
0
function jsons($code, $message = '', $data = array()) { if(!is_numeric($code)) { return ''; } $result = array( 'code' => $code, 'message' => urlencode ...
分类:
Web程序 时间:
2021-06-13 09:22:24
阅读次数:
0
% git pull hint: Pulling without specifying how to reconcile divergent branches is hint: discouraged. You can squelch this message by running one of t ...
分类:
其他好文 时间:
2021-06-10 18:54:15
阅读次数:
0
执行这行代码会报错,NameError: name 'false' is not defined response_content = {"result":false,"returnCode":"500","message":"失败"} 你可以使用下面这两行代码来解决: false = False ...
分类:
编程语言 时间:
2021-06-10 18:53:40
阅读次数:
0
前言 有时候我们使用drf的Response,会发现默认返回的格式不太友好,每次我们都需要写入以下的格式 return Response({ "status": 0, "message": "成功", "results": serializer.data }) 这样会非常麻烦,我们想默认就有stat ...
分类:
其他好文 时间:
2021-06-09 15:29:52
阅读次数:
0
错误现象 runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:docker: network plugin is not ready: cni config uninitialized ...
分类:
Web程序 时间:
2021-06-08 23:40:55
阅读次数:
0
1.父传子 基本就用一个方式,props Father.vue(用v-bind(简写 : ) 将父组件传的值绑定到子组件上) <template> <div> 我是爸爸:{{message}} <hr> <Son :toSonData="toSonData"></Son> </div></templ ...
分类:
其他好文 时间:
2021-06-08 22:56:30
阅读次数:
0
python客户端代码,可直接使用 import websocket import json import time import threading class WebsocketClient(object): """docstring for WebsocketClient""" def __i ...
分类:
编程语言 时间:
2021-06-07 21:05:52
阅读次数:
0
Actor模型的理念: 所有对象皆是Actor,Actor之间仅通过Message Passing来通信,所有操作都是异步的,使得整个系统获得大规模的并发能力。 Actor消息内容,一般包括几个主要属性: source:发送方 subject:主题,表明消息类型。 data:消息内容。 Actor收 ...
分类:
其他好文 时间:
2021-06-06 19:34:39
阅读次数:
0