aurelia Questions
7
When I use aurelia-fetch-client to post json data to server and I got this error "TypeError: NetworkError when attempting to fetch resource." I think your answer is very useful to me.
post.html
...
Bibbye asked 10/3, 2017 at 13:1
7
I have a TypeScript project that builds and runs, but I have a ton of build errors that all seem to stem from one error:
TS4090: (TS) Conflicting definitions for 'node' found at 'C:/[projectpath...
Beeline asked 20/6, 2019 at 16:49
0
For some time, I've been banging my head with running a pretty straightforward (close to a freshly bootstrapped Aurelia project) configuration. I have a problem launching any tests, and the Chrome ...
Lycanthropy asked 8/3 at 12:22
2
Solved
I'm seeing this feature in the docs, but I can't quite figure out how to use it from that information.
It says:
<i-produce-a-value ref.view-model="producer"></i-produce-a-value>
<i...
Gladysglagolitic asked 8/6, 2015 at 16:43
16
Solved
About two months ago we started using Rollbar to notify us of various errors in our Web App. Ever since then we have been getting the occasional error:
ResizeObserver loop limit exceeded
The thin...
Montemontefiascone asked 20/3, 2018 at 12:22
2
Solved
On my Windows machine, I am attempting to build a containerized node.js application with the following Dockerfile:
# use latest version of nodejs
FROM node:lts-alpine
# install aurelia-cli to ...
Decrepit asked 12/7, 2022 at 16:5
2
Solved
We have the following call to fetch.
this.http.fetch('flasher', { method: 'post', body: jsonPayload })
.then(response => response.json())
.then(data => console.log(data));
This works wh...
Endeavor asked 25/3, 2016 at 18:35
3
On compiling an app and trying to implement the i18n library with webpack, I face this error:
ERROR in ./node_modules/bundle-loader?lazy&name=lang-pt!./src/locales/pt/translation.json
Module p...
Encode asked 26/3, 2018 at 22:36
4
Solved
I have a custom element which will take user input, and on [save] button click, I want to pass information to the parent view-model so I can send it to the server and move to the next section. I'm ...
Cavan asked 20/8, 2016 at 14:46
3
Solved
I have a list of items coming in from an API and they won't always be the same, so the number of items in the array is always changing. I'm creating a checkbox for each item.
The user has the abi...
0
I am using an Aurelia web application and utilize the http.fetch to call upon various Web APIs.
To help debug I log any errors on the fetch using a catch statement, so something like this:
this.htt...
4
Solved
I have an Aurelia app and in app.js I want to use jQuery.
So my config.js looks like:
System.config({
...
map: {
...
"jquery": "npm:[email protected]",
...
}
}
And in app.js I import ...
Obolus asked 13/1, 2016 at 15:54
6
Solved
I have hardcoded classes to represent models in my Aurelia application. Here's a model 'PostEdit':
var _postID = Symbol();
var _title = Symbol();
var _text = Symbol();
export class PostEdit {
c...
Beverlee asked 28/10, 2015 at 4:31
3
I started a new Aurelia app using the Aurelia CLI.
I installed JQuery and configured aurelia.json using the instructions at the Aurelia documentation:
http://aurelia.io/hub.html#/doc/article/aure...
Fouts asked 28/11, 2016 at 5:6
5
I'm calling an API to download excel file from the server using the fetch API but it didn't force the browser to download, below is my header response:
HTTP/1.1 200 OK Content-Length: 168667
Conte...
Wakerobin asked 24/5, 2017 at 20:40
3
Solved
I need to format Date using format returned by promise. I tried returning promise from toView(value). But that doesn't work.
@autoinject
export class DateTimeValueConverter {
constructor(private...
Colbert asked 19/4, 2016 at 8:30
1
Solved
Getting following error from the console window after updating the chrome to version 88.0.4324.104
Error with Permissions-Policy header: Parse of permission policy failed because of errors reported...
Declivous asked 25/1, 2021 at 9:28
2
I used the start kit to build my app before Aurelia was released from here :
https://github.com/aurelia/skeleton-navigation
But when Aurelia was released , I wanted to check the au new --myApp an...
Acidfast asked 17/8, 2016 at 8:48
1
I have the following:
<ai-dialog>
<ai-dialog-header style="display:flex;justify-content:space-between">
<span>New Person</span>
<i class="fa fa-close" style="cursor:p...
Danaus asked 19/1, 2017 at 16:40
3
Solved
I'm facing a problem when using the new aurelai release :
I created a new app using : au new myApp
I installed aurelia-dialog via npm
When I import aurelia-dialog and try to run the app using
...
Curzon asked 4/8, 2016 at 8:24
1
Solved
Ok, so I added cypress to aurelia during my configuration and it worked fine. When I went to set up cypress on github as just a command, I could not get it to recognize puppeteer as a browser. So i...
Englishism asked 10/2, 2020 at 23:52
6
Solved
I'm having trouble configuring Bootstrap 4 beta in an Aurelia CLI app (v0.31.1) with requirejs and using TypeScript. After having tried several config variations I keep on getting the following con...
Bradley asked 22/8, 2017 at 11:15
5
For example: http://localhost:3000/#/report/123456
How do I get the "123456" part from the url with Aurelia?
Hope you can help me, couldn't find anything useful in the docs.
Ovarian asked 22/4, 2016 at 7:46
3
Solved
I want to build a simple custom component with Aurelia that allows user to input one or more strings. When there are more than one items, list should show remove button for each item on the list.
...
Argentic asked 6/3, 2017 at 11:21
1
Solved
I am trying to bind the src attribute of an img tag in an aurelia component, how can I do so?
I'm creating some images in a reapeat.for loop this way:
<img repeat.for="picture of infoboard....
Snath asked 4/8, 2019 at 15:47
1 Next >
© 2022 - 2024 — McMap. All rights reserved.