gpt4 book ai didi

javascript - meteor ,ClientStorage-TypeError : Cannot read property 'has' of undefined

转载 作者:行者123 更新时间:2023-11-30 20:56:29 26 4
gpt4 key购买 nike

我正在使用 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');

您不需要同时导入 ClientStorageclientStorage。大写字母透明地处理 cookies/本地存储。

关于javascript - meteor ,ClientStorage-TypeError : Cannot read property 'has' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47606459/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com