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;








0















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.










share|improve this question
























  • 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

















0















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.










share|improve this question
























  • 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













0












0








0








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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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

















  • 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












2 Answers
2






active

oldest

votes


















1














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'));
);






share|improve this answer























  • 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


















0














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'));
);






share|improve this answer























  • 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











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
);



);













draft saved

draft discarded


















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









1














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'));
);






share|improve this answer























  • 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















1














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'));
);






share|improve this answer























  • 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













1












1








1







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'));
);






share|improve this answer













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'));
);







share|improve this answer












share|improve this answer



share|improve this answer










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

















  • 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













0














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'));
);






share|improve this answer























  • 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















0














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'));
);






share|improve this answer























  • 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













0












0








0







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'));
);






share|improve this answer













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'));
);







share|improve this answer












share|improve this answer



share|improve this answer










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

















  • 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

















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript