解决浏览器端 globalThis is not defined 报错 前言解决办法: 前言
在使用低版本火狐浏览器出现报错globalThis is not defined
解决办法:
在vue的index.html 中添加 this.globalThis || (this.globalThis this)
<head><script>this.g…
2024每日刷题(110)
Leetcode—535. TinyURL 的加密与解密 实现代码
class Solution {
public:// Encodes a URL to a shortened URL.string encode(string longUrl) {while(!urlToCode.count(longUrl)) {string code;for(int i 0; i < 6; i) {code…