Tagged Questions
0
votes
2answers
23 views
How to deal with nested data in Angular.js select in a form?
I have a node.js app where the form has a selector. The app loads the data from mongodb via mongoose and populates a nested referenced object. So my data looks like:
{ "__v" : 0,
"_id" : ObjectId( ...
0
votes
0answers
10 views
Mod_proxy server flow for making HTTP requests via a hosted javascript app
Can anyone give a moderately detailed proxy server flow for making HTTP requests via a hosted javascript app, which is an angularjs/node app hosted on apache server port:3000 in my case. I'm calling ...
0
votes
1answer
15 views
Resizing and compressing AJAX images in Node/AngularJS application
I'm building an app in AngularJS, built on Node/ExpressJS. I have a list of images which are hosted externally (and I have no access to them to compress them at the source).
The issue is, that often ...
0
votes
1answer
25 views
making a data application that will store data on each day on the calander
i am having a bit of a problem, i am sure this question has been asked but i cant figure my way to google it or find it here.
i am building an web app with angular and node.
my task is that every ...
0
votes
0answers
13 views
AngularJS with ckeditor is producing an arcane error on load
Using the solution from this problem: Bind Ckeditor value to model text in angularjs and rails
I get the following error whenever I try to use the directive on my page.
Uncaught TypeError: Cannot ...
0
votes
0answers
22 views
AngularJS + Typescript: Best practices for controller structure
I am new both to AngularJS and Typescript and i'm excited to learn them both.
I have this enormous controller in which I have two practices I suspect to be not ideal.
Firstly: I declare all the ...
0
votes
1answer
42 views
basic javascript object and mime regarding a basic web-server code
i am new to programming with javascript. and i picked angular + node.js for server side.
i went through the angular tutorial and i have a few question regarding the web-server.js they gave. as the ...
0
votes
1answer
43 views
AngularJS click directive doesn't trigger function w/ Jade
This is loosely based on the MEAN Stack demo: Mongo, Express, AngularJS, and NodeJS
I want to add a delete method to my controller in my Jade template like so
characters.jade
script
...
0
votes
1answer
67 views
AngularJS and Websockets
I'm trying to learn the HTML5/Node.js/Express/MongoDB/AngularJS/Websocket thing that seems to have everyone excited right now.
As a slight backfire, I'm actually having difficulty drawing lines on ...
0
votes
1answer
71 views
ExpressJS and Angular - 'leaving' the app to do server-side authentication
My app runs on NodeJS, ExpressJS and AngularJS. I'm trying to do facebook authentication using PassportJS. To avoid posting a bunch of unnecessary code, let's just say that the Passport code works as ...
0
votes
1answer
70 views
using AngularJS html5mode with nodeJS and requireJS
I'm using a nodeJS server with Express to serve my AngularJS application. I'm also using requireJS to load all my scripts. This all works fine when I'm using angularJS default routes (hashbangs), but ...
0
votes
0answers
26 views
RangeError: Maximum call stack size exceeded at new Number (<anonymous>) at Number.toString (native)
RangeError: Maximum call stack size exceeded
at new Number ()
at Number.toString (native)
Here is my code i am geeting this error continusly
js=jQuery.noConflict();
...
0
votes
0answers
24 views
how to upload file from ng-controller?
How can I upload a file from my angular controller. I am doing something like, On ng-click I am calling upload_file() function which is declared inside my controller. And I want to use something like ...
0
votes
0answers
17 views
Integrated MongoDB for nodejitsu
Modified the MEAN Stack code for the PhoneCat Angular Seed App from Dalcib's MEAN Stack for a Movie DB and trying to deploy the code on nodejitsu
When Deployed the AngularJS Batarang gives an Error ...
0
votes
0answers
32 views
How to attach file to post request nodejs?
I am using nodejs for file upload. I am trying something like this below link. But not getting how to post the stuff. I need to post the JSON data along with the file. How can I do?
function myCtrl() ...