最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Convert String to Function in AngularJS - Stack Overflow

programmeradmin1浏览0评论

I am trying to convert strings to AngularJS Service method calls in a controller. For example, I would like to convert the string "Contact.send(email)" to call an existing service method. I thought to use:

window["Contact"]["send"](email);

as in this thread - How to execute a JavaScript function when I have its name as a string - but it says that the Contact service is undefined, despite being injected into the controller.

I am trying to convert strings to AngularJS Service method calls in a controller. For example, I would like to convert the string "Contact.send(email)" to call an existing service method. I thought to use:

window["Contact"]["send"](email);

as in this thread - How to execute a JavaScript function when I have its name as a string - but it says that the Contact service is undefined, despite being injected into the controller.

Share Improve this question edited May 23, 2017 at 11:53 CommunityBot 11 silver badge asked Jul 18, 2014 at 4:46 user2715324user2715324 411 silver badge4 bronze badges 4
  • 1 Have you tried something like eval("contact.send(email)");? – AdityaParab Commented Jul 18, 2014 at 4:49
  • I was trying to avoid using eval, if at all possible. – user2715324 Commented Jul 18, 2014 at 4:56
  • I ran into similar problem back in the day. This might help stackoverflow./questions/11666301/object-has-no-method-apply – AdityaParab Commented Jul 18, 2014 at 5:00
  • We need more code to go on. Why are you trying to reference Contact on window if it was injected into your controller? Post your controller and the service returning Contact please. – ChevCast Commented Jul 18, 2014 at 5:01
Add a ment  | 

2 Answers 2

Reset to default 6

You need to use $injector to get a service from a string:

$injector.get('Contact')['send'](email);

You can use the $scope.$eval method to evaluate an expression on the current $scope context.

$scope.$eval("Contact.send(email)");

but you need to make sure that the Contact object is available on the $scope object, else it would not work. See scope documentation for this https://code.angularjs/1.2.15/docs/api/ng/type/$rootScope.Scope

发布评论

评论列表(0)

  1. 暂无评论