parent
d1f3cd7a10
commit
1786724598
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "anot",
|
"name": "anot",
|
||||||
"version": "2.2.3",
|
"version": "2.2.4",
|
||||||
"description": "Anot - 迷你mvvm框架",
|
"description": "Anot - 迷你mvvm框架",
|
||||||
"main": "dist/anot.js",
|
"main": "dist/anot.js",
|
||||||
"files": ["dist"],
|
"files": ["dist"],
|
||||||
|
|
|
@ -469,7 +469,7 @@ Anot.mix({
|
||||||
key += ''
|
key += ''
|
||||||
let uri = location.search
|
let uri = location.search
|
||||||
|
|
||||||
if (!key || !uri) {
|
if (!uri) {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
uri = decode(uri)
|
uri = decode(uri)
|
||||||
|
@ -493,7 +493,11 @@ Anot.mix({
|
||||||
obj[tmp[0]] = tmp[1]
|
obj[tmp[0]] = tmp[1]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (key) {
|
||||||
return obj.hasOwnProperty(key) ? obj[key] : null
|
return obj.hasOwnProperty(key) ? obj[key] : null
|
||||||
|
} else {
|
||||||
|
return obj
|
||||||
|
}
|
||||||
},
|
},
|
||||||
//复制文本到粘贴板
|
//复制文本到粘贴板
|
||||||
copy: function(txt) {
|
copy: function(txt) {
|
||||||
|
|
Reference in New Issue