作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 ostrio:cstorage像这样打包(用于测试):
import { check } from 'meteor/check'
import { Meteor } from 'meteor/meteor'
import {Tasks} from './collections.js'
import { ClientStorage, clientStorage } from 'meteor/ostrio:cstorage';
Meteor.methods({
'vote.check'(tipId) {
//check(tipId, String);
// we want to use a date with a 1-day granularity
var startOfDay = new Date;
startOfDay.setHours(0, 0, 0, 0);
console.log("In vote.check:"+tipId);
clientStorage.has('aaaa');
},
但我总是收到“TypeError:无法读取未定义的‘has’属性”——有人能告诉我为什么吗?我真的不知道。谢谢
最佳答案
我认为你可以:
ClientStorage.has('aaaa');
小写版本定义了一个类;要使用它,您需要创建一个新变量。
csCookies = new clientStorage('cookies');
csCookies.has('aaaa');
您不需要同时导入 ClientStorage
和 clientStorage
。大写字母透明地处理 cookies/本地存储。
关于javascript - meteor ,ClientStorage-TypeError : Cannot read property 'has' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47606459/
我正在使用 ostrio:cstorage像这样打包(用于测试): import { check } from 'meteor/check' import { Meteor } from 'meteo
我是一名优秀的程序员,十分优秀!