js 将数据转换为字符串的另类方法,直接使用加号(+)拼接一个空字符串("")
console.log(123 + ''); // '123'
console.log([1, 2, 3] + ''); // '1,2,3'
console.log(tr...
yekong
3年前 (2022-05-17)
喜欢
首先我们来看看一个浮点型数在计算机中的表示,它总共长度是64位,其中最高位为符号位,接下来的11位为指数位,最后的52位为小数位,即有效数字的部分。
· 第0位:符号位sign表示数的正负,0表示正数,1表示负数。
· 第1位到第11位:存储指数部分,用e表示。
· 第12位到第...
yekong
3年前 (2022-05-16)
喜欢
isNaN()函数在判断是否为NaN时,需要先进行数据类型转换,只有在无法转换为数字时才会返回“true”;
Number.isNaN()函数在判断是否为NaN时,只需要判断传入的值是否为NaN,并不会进行数据类型转换。
...
yekong
3年前 (2022-05-16)
喜欢
isNaN()函数
它用来确定一个变量是不是NaN。NaN是一个Number类型的数值。
空对象是NaN
isNaN({}); // true
isNaN(NaN); // true
isNaN(undefined); // true
isNaN({}); ...
yekong
3年前 (2022-05-16)
喜欢
记录生成二维码数据处理方式,方便后期查询
getUn() {
var that = this;
getUn({
page: this.page,
width: 200,
scene: this.userId
}).then(r...
yekong
3年前 (2022-05-16)
喜欢
uniapp开发app需要配置隐私政策。
打开manifest.json->App启动界面配置->原生隐私政策提示框
勾选原生隐私政策提示框
uniapp app 开启原生隐私政策配置
...
yekong
3年前 (2022-05-16)
喜欢
官方配置文档
配置文档
配置说明
注意!androidPrivacy.json不要添加注释,会影响隐私政策提示框的显示!!!
勾选后会在项目中自动添加androidPrivacy.json文件,可以双击打开自定义配置以下内容:
{
"version":...
yekong
3年前 (2022-05-16)
喜欢
使用
<uploadFile
:transactTemplateName.sync="scope.row.transactTemplateName"
:transactTemplateP...
yekong
3年前 (2022-05-15)
喜欢
使用实例
<computerIcon :img.sync="ruleForm.imgPath"></computerIcon>
代码
/**
* @Author: 858834013@qq.com
* @Name: Computer...
yekong
3年前 (2022-05-15)
喜欢
vue项目报错
An error occurred in hook getInspectorState registered by plugin org.vuejs.vue2-internal
删除vuex store模块里的namespaced 就不再报错了。
...
yekong
3年前 (2022-05-15)
喜欢