uniapp热更新(springboot实现后台)

2019-09-26  本文已影响0人  eliteTyc
需要完成的功能,uniapp的热更新,原始app如下,需要在页面新加一行文字,然后实现热更新
Screenshot_2019-09-04-10-09-59-253_io.dcloud.UNIE.jpg
实现原理
实现步骤
onLaunch: function() {
            console.log('App Launch')
            
            plus.runtime.getProperty(plus.runtime.appid, function(widgetInfo) {  
                uni.request({  
// 这里填写的是当前电脑所在局域网的ip地址加端口号加接口地址
                    url: 'http://192.168.1.175:8080/update/',  
                    data: {  
                        version: widgetInfo.version,  
                        name: widgetInfo.name  
                    },  
                    success: (result) => {  
                        var data = result.data;  
                        console.log(result)
                        if (data.update && data.wgtUrl) {  
                            uni.downloadFile({  
                                url: data.wgtUrl,  
                                success: (downloadResult) => {  
                                    if (downloadResult.statusCode === 200) {  
                                        plus.runtime.install(downloadResult.tempFilePath, {  
                                            force: false  
                                        }, function() {  
                                            console.log('install success...');  
                                            plus.runtime.restart();  
                                        }, function(e) {  
                                            console.error('install fail...');  
                                        });  
                                    }  
                                }  
                            });  
                        }  
                    }  
                });  
            });  
        }
<template>
    <view class="content">
        <image class="logo" src="/static/logo.png" ></image>
        <view class="text-area">
            <text class="title">{{title}}</text>
        </view>
        
        <view @click="androidNative">点击调用android原生方法</view>
        <!-- 这一段话是新加的 -->
        <view>这里是新加的东西,12312312312</view>
        
    </view>
</template>
springboot后台代码编写
@RestController
public class AppVersionController {

    @GetMapping("/update")
    public Result checkUpdate(@RequestParam("name") String name,@RequestParam("version") String version){

        if(Integer.valueOf(version.replaceAll("\\.",""))<110){
//            如果传递过来的版本号小于当前最新版本号,说明有更新
            return new Result(true,"http://192.168.1.175:8080/__UNI__E0CD5A1.wgt","");
        }else {
            return  new Result(false,"","");
        }

    }
}

其中就是讲前端传过来的应用版本名称与当前版本号110对比,我们前端未更新的是100如果比他小就会返回文件的下载地址

@Data
@AllArgsConstructor
@NoArgsConstructor
public class Result {
//    update: true,
//    wgtUrl: result.wgtUrl,
//    pkgUrl: ''
    private boolean update;
    private String wgtUrl;
    private String pkgUrl;

}

上一篇 下一篇

猜你喜欢

热点阅读