06 2020 档案

摘要:GetUUID() { var s = []; var hexDigits = "0123456789abcdef"; for (var i = 0; i < 36; i++) { s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1 阅读全文
posted @ 2020-06-15 09:31 johnjackson 阅读(320) 评论(0) 推荐(0)
摘要:通过ionic g componennt xxx 创建一个组件,然后在组件中的html中写的ion-xxx标签 会提示未知元素, 解决方法: 在components.module.ts中引入 import { NgModule } from '@angular/core'; import { Nav 阅读全文
posted @ 2020-06-12 14:49 johnjackson 阅读(1019) 评论(0) 推荐(0)
摘要:https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Access_control_CORS 阅读全文
posted @ 2020-06-10 09:21 johnjackson 阅读(908) 评论(0) 推荐(1)