https://www.bestqa.net/sr/bestqa_util_base64
如果有人需要可以用,这个工具本身没啥特殊的地方。
有没有人需要类似的
输入 加个函数 然后得到一个输出的快速搭建的平台。
背后的代码:
func: encode
code: {{{
function encode(params) {
if (params.length < 2) return "";
let raw_str = params[0];
if (!raw_str) return "";
let is_encode = params[1];
if (is_encode) {
return btoa(raw_str);
} else {
return atob(raw_str);
}
}
}}}
# yes or no text
2. 编码或者解码?
type: boolean
titleLocation: none
labelTrue: 编码
labelFalse: 解码
1. 字符串
type: text
textUpdateMode: onTyping
3. 结果
type: expr
expr: encode({Q1},{Q2})
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.