Argument of type string is not assignable to paramMapTypescript Type 'string' is not assignable to typeAngular 2 | Directives Argument of type '' is not assignable toArgument of type 'number' is not assignable to parameter of type 'string'Angular HTTP requestNot able to get storage varialbe on another class app.component.ts in IONICType 'SQLiteOriginal' is not assignable to type 'Provider'Type 'AppVersionOriginal' is not assignable to type 'Provider'. Type 'AppVersionOriginal' is missing the following propertiArgument of type 'File' is not assignable to parameter of type 'string | Blob' in formDataAngular 2 observables dynamic filters between sibling components (Google Font like)Can't get JSON request from my local server in Ionic 4
Why doesn’t a normal window produce an apparent rainbow?
Payment instructions allegedly from HomeAway look fishy to me
Was Jesus good at singing?
Should I give professor gift at the beginning of my PhD?
Watts vs. Volt Amps
Cross-dimension teleportation using command block or datapack?
How to retract an idea already pitched to an employer?
Arriving at the same result with the opposite hypotheses
Is this a mistake? (regarding maximum likelihood estimator)
How to build suspense or so to establish and justify xenophobia of characters in the eyes of the reader?
Implement Homestuck's Catenative Doomsday Dice Cascader
What is the actual quality of machine translations?
How can I most clearly write a homebrew item that affects the ground below its radius after the initial explosion it creates?
Is open-sourcing the code of a webapp not recommended?
How to tell your grandparent to not come to fetch you with their car?
"You've got another thing coming" - translation into French
Interview not reimboursed if offer is made but not accepted
What are the peak hours for public transportation in Paris?
What risks are there when you clear your cookies instead of logging off?
How does an ordinary object become radioactive?
What's the largest optical telescope mirror ever put in space?
PhD - Well known professor or well known school?
Winning Strategy for the Magician and his Apprentice
Using a found spellbook as a Sorcerer-Wizard multiclass
Argument of type string is not assignable to paramMap
Typescript Type 'string' is not assignable to typeAngular 2 | Directives Argument of type '' is not assignable toArgument of type 'number' is not assignable to parameter of type 'string'Angular HTTP requestNot able to get storage varialbe on another class app.component.ts in IONICType 'SQLiteOriginal' is not assignable to type 'Provider'Type 'AppVersionOriginal' is not assignable to type 'Provider'. Type 'AppVersionOriginal' is missing the following propertiArgument of type 'File' is not assignable to parameter of type 'string | Blob' in formDataAngular 2 observables dynamic filters between sibling components (Google Font like)Can't get JSON request from my local server in Ionic 4
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I tried to create some basic function in the ionic framework.
I have declared ID as a number in model.ts and created a function to access that value using paramMap it shows an error that string is not assignable to a number.
I am using Ionic 4.0.
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(paramMap.get('placeId'));
);
service.ts
is where I wrote the getplace
function:
getplace(id: number)
return ...this._places.find(
p => p.id === id
);
Model:
import Time from '@angular/common';
export class place
constructor(
public id: number,
public user_id: number,
public title: string,
public cooked_time: Date,
public dispose_time: Date,
public food_type: string,
public description: string,
public serve_quantity: number,
public imageUrl: string,
public lat: number,
public long: number
)
I am expecting to pass a number and that function is taking it as a string.
angular ionic-framework ionic4
add a comment |
I tried to create some basic function in the ionic framework.
I have declared ID as a number in model.ts and created a function to access that value using paramMap it shows an error that string is not assignable to a number.
I am using Ionic 4.0.
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(paramMap.get('placeId'));
);
service.ts
is where I wrote the getplace
function:
getplace(id: number)
return ...this._places.find(
p => p.id === id
);
Model:
import Time from '@angular/common';
export class place
constructor(
public id: number,
public user_id: number,
public title: string,
public cooked_time: Date,
public dispose_time: Date,
public food_type: string,
public description: string,
public serve_quantity: number,
public imageUrl: string,
public lat: number,
public long: number
)
I am expecting to pass a number and that function is taking it as a string.
angular ionic-framework ionic4
can't you cast via <number>
– jcuypers
Mar 24 at 16:21
@jcuypers bro I am totally new to it can you just gimme a dummy example
– Pushpendra Pal
Mar 24 at 16:24
add a comment |
I tried to create some basic function in the ionic framework.
I have declared ID as a number in model.ts and created a function to access that value using paramMap it shows an error that string is not assignable to a number.
I am using Ionic 4.0.
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(paramMap.get('placeId'));
);
service.ts
is where I wrote the getplace
function:
getplace(id: number)
return ...this._places.find(
p => p.id === id
);
Model:
import Time from '@angular/common';
export class place
constructor(
public id: number,
public user_id: number,
public title: string,
public cooked_time: Date,
public dispose_time: Date,
public food_type: string,
public description: string,
public serve_quantity: number,
public imageUrl: string,
public lat: number,
public long: number
)
I am expecting to pass a number and that function is taking it as a string.
angular ionic-framework ionic4
I tried to create some basic function in the ionic framework.
I have declared ID as a number in model.ts and created a function to access that value using paramMap it shows an error that string is not assignable to a number.
I am using Ionic 4.0.
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(paramMap.get('placeId'));
);
service.ts
is where I wrote the getplace
function:
getplace(id: number)
return ...this._places.find(
p => p.id === id
);
Model:
import Time from '@angular/common';
export class place
constructor(
public id: number,
public user_id: number,
public title: string,
public cooked_time: Date,
public dispose_time: Date,
public food_type: string,
public description: string,
public serve_quantity: number,
public imageUrl: string,
public lat: number,
public long: number
)
I am expecting to pass a number and that function is taking it as a string.
angular ionic-framework ionic4
angular ionic-framework ionic4
edited Mar 24 at 17:30
marc_s
592k13311321278
592k13311321278
asked Mar 24 at 16:17
Pushpendra PalPushpendra Pal
237
237
can't you cast via <number>
– jcuypers
Mar 24 at 16:21
@jcuypers bro I am totally new to it can you just gimme a dummy example
– Pushpendra Pal
Mar 24 at 16:24
add a comment |
can't you cast via <number>
– jcuypers
Mar 24 at 16:21
@jcuypers bro I am totally new to it can you just gimme a dummy example
– Pushpendra Pal
Mar 24 at 16:24
can't you cast via <number>
– jcuypers
Mar 24 at 16:21
can't you cast via <number>
– jcuypers
Mar 24 at 16:21
@jcuypers bro I am totally new to it can you just gimme a dummy example
– Pushpendra Pal
Mar 24 at 16:24
@jcuypers bro I am totally new to it can you just gimme a dummy example
– Pushpendra Pal
Mar 24 at 16:24
add a comment |
2 Answers
2
active
oldest
votes
use "+" in your call to
this.placesService.getplace(+paramMap.get('placeId'))
to covert string to number
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(+paramMap.get('placeId'));
);
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:42
I searched frantically for an answer why I kept getting a number when I wanted a string, and this "+" was the problem. Thanks, Thivanka!
– JCQian
Apr 16 at 18:31
add a comment |
maybe something like this "bro" :)
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(<number>paramMap.get('placeId'));
);
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:43
while adding <number> tag just i have to add <unkown> tag and it takes number
– Pushpendra Pal
Mar 24 at 17:45
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55325854%2fargument-of-type-string-is-not-assignable-to-parammap%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
use "+" in your call to
this.placesService.getplace(+paramMap.get('placeId'))
to covert string to number
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(+paramMap.get('placeId'));
);
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:42
I searched frantically for an answer why I kept getting a number when I wanted a string, and this "+" was the problem. Thanks, Thivanka!
– JCQian
Apr 16 at 18:31
add a comment |
use "+" in your call to
this.placesService.getplace(+paramMap.get('placeId'))
to covert string to number
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(+paramMap.get('placeId'));
);
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:42
I searched frantically for an answer why I kept getting a number when I wanted a string, and this "+" was the problem. Thanks, Thivanka!
– JCQian
Apr 16 at 18:31
add a comment |
use "+" in your call to
this.placesService.getplace(+paramMap.get('placeId'))
to covert string to number
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(+paramMap.get('placeId'));
);
use "+" in your call to
this.placesService.getplace(+paramMap.get('placeId'))
to covert string to number
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(+paramMap.get('placeId'));
);
answered Mar 24 at 17:17
Thivanka SaranathaThivanka Saranatha
1627
1627
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:42
I searched frantically for an answer why I kept getting a number when I wanted a string, and this "+" was the problem. Thanks, Thivanka!
– JCQian
Apr 16 at 18:31
add a comment |
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:42
I searched frantically for an answer why I kept getting a number when I wanted a string, and this "+" was the problem. Thanks, Thivanka!
– JCQian
Apr 16 at 18:31
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:42
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:42
I searched frantically for an answer why I kept getting a number when I wanted a string, and this "+" was the problem. Thanks, Thivanka!
– JCQian
Apr 16 at 18:31
I searched frantically for an answer why I kept getting a number when I wanted a string, and this "+" was the problem. Thanks, Thivanka!
– JCQian
Apr 16 at 18:31
add a comment |
maybe something like this "bro" :)
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(<number>paramMap.get('placeId'));
);
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:43
while adding <number> tag just i have to add <unkown> tag and it takes number
– Pushpendra Pal
Mar 24 at 17:45
add a comment |
maybe something like this "bro" :)
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(<number>paramMap.get('placeId'));
);
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:43
while adding <number> tag just i have to add <unkown> tag and it takes number
– Pushpendra Pal
Mar 24 at 17:45
add a comment |
maybe something like this "bro" :)
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(<number>paramMap.get('placeId'));
);
maybe something like this "bro" :)
ngOnInit()
this.route.paramMap.subscribe(paramMap =>
if (!paramMap.has('placeId'))
this.navCtrl.navigateBack('/places/tabs/discover');
return;
this.place = this.placesService.getplace(<number>paramMap.get('placeId'));
);
answered Mar 24 at 16:25
jcuypersjcuypers
1,40511119
1,40511119
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:43
while adding <number> tag just i have to add <unkown> tag and it takes number
– Pushpendra Pal
Mar 24 at 17:45
add a comment |
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:43
while adding <number> tag just i have to add <unkown> tag and it takes number
– Pushpendra Pal
Mar 24 at 17:45
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:43
Thanks bro it works fine
– Pushpendra Pal
Mar 24 at 17:43
while adding <number> tag just i have to add <unkown> tag and it takes number
– Pushpendra Pal
Mar 24 at 17:45
while adding <number> tag just i have to add <unkown> tag and it takes number
– Pushpendra Pal
Mar 24 at 17:45
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55325854%2fargument-of-type-string-is-not-assignable-to-parammap%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
can't you cast via <number>
– jcuypers
Mar 24 at 16:21
@jcuypers bro I am totally new to it can you just gimme a dummy example
– Pushpendra Pal
Mar 24 at 16:24