Posts by Sidiclei F. Almeida • 307 points
11 posts
-
2
votes2
answers123
viewsQ: Doubt architecture deployment with Elasticsearch?
Hello, it is normal to use Elasticsearch as a direct backend in a web application. Security-related? Frontend (js) -> Backend (Elasticsearch) or Frontend (js) -> your backend -> service…
-
1
votes1
answer31
viewsQ: How to filter and display the date most acts within a JS object
i have the following list of objects but need to filter only user... let msg = [{ _id: 5cef45879e78602774e921d0, to: '5ce82f0deee6dc458a20b21e', from: '5ce82f0deee6dc458a20b21e', text: '5', type:…
javascriptasked Sidiclei F. Almeida 307 -
1
votes1
answer31
viewsQ: Why does vuejs say that this function does not exist? if it is working ok
I have the following code below the function openDados(), it works more within the return context of the call socket does not work because.. I remember seeing something similar like this = this…
-
0
votes1
answer119
viewsQ: Scalability with Pm2 or Docker?
Good afternoon, I have a question about the differences.. I have an architecture Back Nodejs, Redis Frontend Vuejs What’s the difference between putting to climb with Docker swarm and putting PM2..…
-
1
votes1
answer262
viewsQ: how to make js hope to resolve and start another
Hello I’m new and just turn in js currently using vueJs. but I still can’t turn normal process into async await, nor with promise, the old way. I know I have to get it into my head. I have a way in…
-
1
votes0
answers112
viewsQ: How do I send large files with Multipart/form-data?
Hello, a help I am developing an app with quasar but when creating a file upload with Component I can not send the files in small parts... look at the code... <template> <q-uploader…
-
4
votes1
answer126
viewsQ: v-for vuejs how to charge with timer
How do I get the list display to be paused, example wait 1 second display: 1 + 1 segundo 2 + 1 segundo 3 <div> <span v-for="n in 10">{{ n }} </span> </div> I used setTimeout…
vue.jsasked Sidiclei F. Almeida 307 -
0
votes0
answers84
viewsQ: Laravel Controller add content?
I’m new and I’d like some help, I have a controller carrying out a consultation. Controller $user = $this->user->find('1'); view('index', compact('user')); View @forelse ($user as $u)…
-
3
votes1
answer2086
viewsQ: How to create functions available globally in the Standard?
I would like to create functions that are globally available to reuse the code. What would be the best way to do this, in the Standard... The flow I need would be like this.: I’ll get a requisition…
-
2
votes1
answer54
viewsQ: Infinite relationship...?
I have a question that would be, how to accomplish a relationship that can be infinite.: Ex: User table with the user id field that would be one for many with Post Table. Inside the Post Table would…
-
1
votes1
answer460
viewsQ: nodejs + Mongoose how do for one query need another?
I have two tables they have a link id being table A(Initial) tableB(dependencies) however there may be dependencies. I’d like you to just return in the dependency sequence. function Deps(dt) {…