update.js 404 B

12345678910111213141516171819
  1. function update() {
  2. sendPost("version/app", {
  3. version: plus.runtime.version,
  4. code: "app_doc"
  5. }, null, function(res) {
  6. if (res.status == 200) {
  7. if (res.url) {
  8. mui.confirm("发现新版本,下载更新?", "更新", ["立即更新", "取  消"], function(event) {
  9. if (0 == event.index) {
  10. plus.runtime.openURL(res.url);
  11. }
  12. });
  13. }
  14. }
  15. })
  16. }
  17. mui.plusReady(update);