meteor Questions
2
Solved
im trying to perform a query like this:
{
people{
pet{
name
}
}
}
result:
{
"people": {
"pet": null
}
},
{
"people": {
"pet": {
name: "steve"
}
}
}
What i want is to get only peo...
Afghan asked 22/6, 2016 at 13:11
2
Solved
I want to check if user id exists inside an array field of mongodb (using meteor)
db.posts.find().pretty()
{
"_id" : "hT3ezqEyTaiihoh6Z",
"body" : "hey\n",
"authorId" : "AyJo5nf2Lkdqd6aRh",
...
5
Solved
Not sure how to use $currentDate when inserting a document into a MongoDB collection in Meteor.
Can this only be used in an update, not an insert? Would seem strange, but I don't see an alternati...
Gaza asked 13/5, 2015 at 2:31
6
Solved
Just getting started with Meteor, on Windows.
Following the initial instructions, the automatically generated "Hello World" app is running on localhost. The text and button are there, but clicking ...
Slovakia asked 15/1, 2013 at 20:35
4
I need to handle some POST data in my meteor.js app, is there an easy way to do this?
Very basic, if it was a PHP app I would just want the $_POST variable.
Tatterdemalion asked 4/2, 2013 at 9:28
2
Solved
I'm currently creating generic spreadsheets in JS using https://www.npmjs.com/package/xlsx . This works fine to generate just a generic spreadsheet to display my data. However, I wanna add a few fe...
Frumenty asked 20/11, 2019 at 20:59
2
Solved
I wonder how to change user profile information in Meteor. I created an application using the accounts-base package, so I can quickly manage all related stuff with user accounts. Which is really gr...
Darlington asked 26/1, 2013 at 10:11
2
This server side query in Meteor returns "No query solutions"
$or: [
{
$text: {
$search: searchValue,
$caseSensitive: false,
$diacriticSensitive: false
}
},
{
content: {$regex: re}
}
]
...
4
Solved
I have a map() and I want to pass two parameters:
a string
a function
Example code:
{
values.map((workflow, totalWorkflow()) => {
return <WorkflowSingle key={ workflow } workflow...
Schoolteacher asked 26/4, 2016 at 22:10
4
I've been trying to recreate the spotify oauth connection in MeteorJS. I've gotten as far as requesting the access and refresh tokens, but I keep getting a 415 error now. Here is the relevant code:...
1
I'm struggling to get Meteor, Vue and Typescript to work together. I can't find any tutorials on Meteor, Vue and Typescript and the example github projects don't work correctly either and use worka...
Doorbell asked 20/3, 2021 at 11:21
4
Solved
I would like to find out how to connect to an external MongoDB instance in Meteor.
I have added this environment
Meteor.startup(function () {
process.env.MONGO_URL = 'mongodb://[UN]:PW]@[host]:...
4
I am trying to set up testing on an existing React Native project. When I run a test with Jest, the test bombs out with the following error:
Test suite failed to run
...etc/__app__/node_modules...
Incommodity asked 1/2, 2020 at 21:10
2
6
Solved
I've installed meteor through the official installer as the image shows:
But the command is still not working on my terminal even when I restart the machine! The .meteor folder on my /users/$USE...
Ravishing asked 5/8, 2015 at 17:24
2
Solved
Documents.update(
{_id: Session.get("current_document_id")},
{$push: {schema: {type: "text", size: size, name: name, label: label}}}
);
The above query is a Meteor collection, and 'Documents.u...
1
I'm having a lot of trouble trying to get Typescript working in a Meteor project with Vue.
I've created a project from scratch using these commands.
Commands
meteor create --vue gift-list-app
meteo...
Silversmith asked 16/3, 2021 at 13:38
3
Solved
The bundled node.fibers fails to load after deployment to a different server with the following error:
/home/ec2-user/bundle/server/node_modules/fibers/fibers.js:13
throw new Error('`'+ modPath+ ...
Ivaivah asked 10/11, 2012 at 23:24
1
I get this error
when running this block of code,
reasoner = new Reasoner({
type: 'local',
folder: 'csp_files'
});
console.log("solving Model");
reasoner.solve(Model, (err, stdout, std...
2
Solved
I tried to insert <div> containers around the {{#each}} but it didn't work as well. Its also odd because it works for 2 normal posts list pages, but not for the 3rd one which sorts them by di...
Wilkey asked 26/1, 2016 at 15:42
5
I couldn't find a scroll event for meteor in the meteor docs. How do I go about doing something as someone scrolls the window down in a meteor application?
I've tried 'scroll window' : function(ev...
Evangelinaevangeline asked 8/6, 2014 at 23:0
3
I have a Meteor (0.8.0) app deployed using Meteor Up to Digital Ocean that's been stuck at 100% CPU, only to crash with out of memory, and start up again at 100% CPU. It's been stuck like this for ...
Guidepost asked 18/4, 2014 at 17:15
5
Solved
I'm trying to implement a basic modal, but its size is kept being extended to height of a page.
Trigger code:
$('.ui.modal.apply-modal').modal('show');
Modal Code:
<div class="ui modal appl...
Ingratiate asked 20/5, 2015 at 6:15
5
Solved
I've been attempting to make this function synchronous. I've read several Stack Overflow posts about Async but I'm unable to comprehend how I would be able to make this synchronous. As of now, it i...
Exploitation asked 28/7, 2015 at 19:24
4
Solved
I am building an app that stores user generated images. These images get used throughout the app in a gallery type view. They also update/regenerate frequently.
The problem I am having is when a n...
Impanation asked 10/4, 2013 at 20:49
© 2022 - 2024 — McMap. All rights reserved.