上传压缩方法 import {api} from '../../api/api.js'; import axios from 'axios'; export function imgPreview (that, file, type) { let self = that; let Orientation; if (!file || !window.FileReader) return; if (/^image/.test(file.type)) { // 创建一个reader let reade
1.由于后端的限制,上传图片到服务器只能的一张一张传2.显示图片预览是本地的图片3.根据服务器返回的结果拿到相应的路径保存到提交评论的接口中4.删除的时候,需要删除对应的路径,不要把删除的提交到评论的接口中 A.comment-detail.js var status = common.getQueryStr("status"); var subsId = common.getQueryStr("subsId"); var isList = common.getQu
ANOTHER TITLE: Let’s use netty to achieve text send and receive and image transfer to server based on android and jdk1.7 就让我来Rap<MC Hotdog>,使用netty进行安卓端发送接收文字,并且附带发送图片功能,折腾了几天的netty总算有点眉目了,做下记录. 需求是安卓端拍照上传到服务器,服务器返回上传成功或失败bla bla bla,需求比较简单.最初使用的传统
//TCP客户端public class TCPClient { public static void main(String[] args)throws IOException { Socket socket = new Socket("127.0.0.1",8888); OutputStream out = socket.getOutputStream(); FileInputStream fis = new FileInputStream("d:\\jay.jpg&qu