{{}} in ng-click & ng-repeat [duplicate]












1
















This question already has an answer here:




  • Why mixing interpolation and expressions is bad practice

    2 answers




This is the code of my HTML



<div id="container" ng-app="containArea" ng-controller="myCtrl">
<div id="sidebody" class="block">
<button
ng-repeat="shopli in shopName"
ng-click="openurl({{'''+shopli.url+'''}})"
class="btn_shopList">
{{shopli.name}}
</button>
</div>
........
</div>


And the JS here



var app = angular.module('containArea', );
app.controller('myCtrl', function($scope) {
$scope.shopName=[
{
"name":'momo購物網',
"url":'https://buyforfun.biz/2LvEY'
},
{
"name":'金石堂書局',
"url":'https://joymall.co/2MX4o'
}
];
$scope.openurl = function(url){
window.open(url, '_blank');
}
});


The {{shopli.name}} output correctly



But if I click the button , nothing happened



Could anyone help me to fix it










share|improve this question













marked as duplicate by georgeawg angularjs
Users with the  angularjs badge can single-handedly close angularjs questions as duplicates and reopen them as needed.

StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 22 '18 at 16:11


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • 1





    why can't you send ng-click="openurl(shopli.url)" directly?

    – Shaheryar.Akram
    Nov 22 '18 at 11:48











  • It works,thank you

    – 張睿玹
    Nov 22 '18 at 11:53











  • glad to be of help! cheers!

    – Shaheryar.Akram
    Nov 22 '18 at 11:54
















1
















This question already has an answer here:




  • Why mixing interpolation and expressions is bad practice

    2 answers




This is the code of my HTML



<div id="container" ng-app="containArea" ng-controller="myCtrl">
<div id="sidebody" class="block">
<button
ng-repeat="shopli in shopName"
ng-click="openurl({{'''+shopli.url+'''}})"
class="btn_shopList">
{{shopli.name}}
</button>
</div>
........
</div>


And the JS here



var app = angular.module('containArea', );
app.controller('myCtrl', function($scope) {
$scope.shopName=[
{
"name":'momo購物網',
"url":'https://buyforfun.biz/2LvEY'
},
{
"name":'金石堂書局',
"url":'https://joymall.co/2MX4o'
}
];
$scope.openurl = function(url){
window.open(url, '_blank');
}
});


The {{shopli.name}} output correctly



But if I click the button , nothing happened



Could anyone help me to fix it










share|improve this question













marked as duplicate by georgeawg angularjs
Users with the  angularjs badge can single-handedly close angularjs questions as duplicates and reopen them as needed.

StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 22 '18 at 16:11


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • 1





    why can't you send ng-click="openurl(shopli.url)" directly?

    – Shaheryar.Akram
    Nov 22 '18 at 11:48











  • It works,thank you

    – 張睿玹
    Nov 22 '18 at 11:53











  • glad to be of help! cheers!

    – Shaheryar.Akram
    Nov 22 '18 at 11:54














1












1








1









This question already has an answer here:




  • Why mixing interpolation and expressions is bad practice

    2 answers




This is the code of my HTML



<div id="container" ng-app="containArea" ng-controller="myCtrl">
<div id="sidebody" class="block">
<button
ng-repeat="shopli in shopName"
ng-click="openurl({{'''+shopli.url+'''}})"
class="btn_shopList">
{{shopli.name}}
</button>
</div>
........
</div>


And the JS here



var app = angular.module('containArea', );
app.controller('myCtrl', function($scope) {
$scope.shopName=[
{
"name":'momo購物網',
"url":'https://buyforfun.biz/2LvEY'
},
{
"name":'金石堂書局',
"url":'https://joymall.co/2MX4o'
}
];
$scope.openurl = function(url){
window.open(url, '_blank');
}
});


The {{shopli.name}} output correctly



But if I click the button , nothing happened



Could anyone help me to fix it










share|improve this question















This question already has an answer here:




  • Why mixing interpolation and expressions is bad practice

    2 answers




This is the code of my HTML



<div id="container" ng-app="containArea" ng-controller="myCtrl">
<div id="sidebody" class="block">
<button
ng-repeat="shopli in shopName"
ng-click="openurl({{'''+shopli.url+'''}})"
class="btn_shopList">
{{shopli.name}}
</button>
</div>
........
</div>


And the JS here



var app = angular.module('containArea', );
app.controller('myCtrl', function($scope) {
$scope.shopName=[
{
"name":'momo購物網',
"url":'https://buyforfun.biz/2LvEY'
},
{
"name":'金石堂書局',
"url":'https://joymall.co/2MX4o'
}
];
$scope.openurl = function(url){
window.open(url, '_blank');
}
});


The {{shopli.name}} output correctly



But if I click the button , nothing happened



Could anyone help me to fix it





This question already has an answer here:




  • Why mixing interpolation and expressions is bad practice

    2 answers








angularjs angularjs-ng-repeat angularjs-ng-click






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 '18 at 11:35









張睿玹張睿玹

82




82




marked as duplicate by georgeawg angularjs
Users with the  angularjs badge can single-handedly close angularjs questions as duplicates and reopen them as needed.

StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 22 '18 at 16:11


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









marked as duplicate by georgeawg angularjs
Users with the  angularjs badge can single-handedly close angularjs questions as duplicates and reopen them as needed.

StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 22 '18 at 16:11


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.










  • 1





    why can't you send ng-click="openurl(shopli.url)" directly?

    – Shaheryar.Akram
    Nov 22 '18 at 11:48











  • It works,thank you

    – 張睿玹
    Nov 22 '18 at 11:53











  • glad to be of help! cheers!

    – Shaheryar.Akram
    Nov 22 '18 at 11:54














  • 1





    why can't you send ng-click="openurl(shopli.url)" directly?

    – Shaheryar.Akram
    Nov 22 '18 at 11:48











  • It works,thank you

    – 張睿玹
    Nov 22 '18 at 11:53











  • glad to be of help! cheers!

    – Shaheryar.Akram
    Nov 22 '18 at 11:54








1




1





why can't you send ng-click="openurl(shopli.url)" directly?

– Shaheryar.Akram
Nov 22 '18 at 11:48





why can't you send ng-click="openurl(shopli.url)" directly?

– Shaheryar.Akram
Nov 22 '18 at 11:48













It works,thank you

– 張睿玹
Nov 22 '18 at 11:53





It works,thank you

– 張睿玹
Nov 22 '18 at 11:53













glad to be of help! cheers!

– Shaheryar.Akram
Nov 22 '18 at 11:54





glad to be of help! cheers!

– Shaheryar.Akram
Nov 22 '18 at 11:54












1 Answer
1






active

oldest

votes


















1














Use the value directly in ng-click function instead of using angular expression {{}}.



ng-click="openurl('''+shopli.url+''')"





var app = angular.module('containArea', );
app.controller('myCtrl', function($scope) {
$scope.shopName = [{
"name": 'momo購物網',
"url": 'https://buyforfun.biz/2LvEY'
},
{
"name": '金石堂書局',
"url": 'https://joymall.co/2MX4o'
}
];
$scope.openurl = function(url) {
console.log(url);
}
});

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div id="container" ng-app="containArea" ng-controller="myCtrl">
<div id="sidebody" class="block">
<button ng-repeat="shopli in shopName" ng-click="openurl(shopli.url)" class="btn_shopList">
{{shopli.name}}
</button>
</div>
</div>








share|improve this answer


























  • Still nothing happened

    – 張睿玹
    Nov 22 '18 at 11:43











  • Still nothing happened upload.cc/i1/2018/11/22/03c6WG.png

    – 張睿玹
    Nov 22 '18 at 11:49













  • @張睿玹 just use ng-click="openurl(shopli.url)" without quotes. That should work for windows.open.

    – Ankit Agarwal
    Nov 22 '18 at 11:53











  • @ Shaheryar.Akram @Ankit Agarwal Thanks a lot ,it work.😊

    – 張睿玹
    Nov 22 '18 at 11:56













  • @張睿玹 glad to help

    – Ankit Agarwal
    Nov 22 '18 at 11:57


















1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














Use the value directly in ng-click function instead of using angular expression {{}}.



ng-click="openurl('''+shopli.url+''')"





var app = angular.module('containArea', );
app.controller('myCtrl', function($scope) {
$scope.shopName = [{
"name": 'momo購物網',
"url": 'https://buyforfun.biz/2LvEY'
},
{
"name": '金石堂書局',
"url": 'https://joymall.co/2MX4o'
}
];
$scope.openurl = function(url) {
console.log(url);
}
});

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div id="container" ng-app="containArea" ng-controller="myCtrl">
<div id="sidebody" class="block">
<button ng-repeat="shopli in shopName" ng-click="openurl(shopli.url)" class="btn_shopList">
{{shopli.name}}
</button>
</div>
</div>








share|improve this answer


























  • Still nothing happened

    – 張睿玹
    Nov 22 '18 at 11:43











  • Still nothing happened upload.cc/i1/2018/11/22/03c6WG.png

    – 張睿玹
    Nov 22 '18 at 11:49













  • @張睿玹 just use ng-click="openurl(shopli.url)" without quotes. That should work for windows.open.

    – Ankit Agarwal
    Nov 22 '18 at 11:53











  • @ Shaheryar.Akram @Ankit Agarwal Thanks a lot ,it work.😊

    – 張睿玹
    Nov 22 '18 at 11:56













  • @張睿玹 glad to help

    – Ankit Agarwal
    Nov 22 '18 at 11:57
















1














Use the value directly in ng-click function instead of using angular expression {{}}.



ng-click="openurl('''+shopli.url+''')"





var app = angular.module('containArea', );
app.controller('myCtrl', function($scope) {
$scope.shopName = [{
"name": 'momo購物網',
"url": 'https://buyforfun.biz/2LvEY'
},
{
"name": '金石堂書局',
"url": 'https://joymall.co/2MX4o'
}
];
$scope.openurl = function(url) {
console.log(url);
}
});

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div id="container" ng-app="containArea" ng-controller="myCtrl">
<div id="sidebody" class="block">
<button ng-repeat="shopli in shopName" ng-click="openurl(shopli.url)" class="btn_shopList">
{{shopli.name}}
</button>
</div>
</div>








share|improve this answer


























  • Still nothing happened

    – 張睿玹
    Nov 22 '18 at 11:43











  • Still nothing happened upload.cc/i1/2018/11/22/03c6WG.png

    – 張睿玹
    Nov 22 '18 at 11:49













  • @張睿玹 just use ng-click="openurl(shopli.url)" without quotes. That should work for windows.open.

    – Ankit Agarwal
    Nov 22 '18 at 11:53











  • @ Shaheryar.Akram @Ankit Agarwal Thanks a lot ,it work.😊

    – 張睿玹
    Nov 22 '18 at 11:56













  • @張睿玹 glad to help

    – Ankit Agarwal
    Nov 22 '18 at 11:57














1












1








1







Use the value directly in ng-click function instead of using angular expression {{}}.



ng-click="openurl('''+shopli.url+''')"





var app = angular.module('containArea', );
app.controller('myCtrl', function($scope) {
$scope.shopName = [{
"name": 'momo購物網',
"url": 'https://buyforfun.biz/2LvEY'
},
{
"name": '金石堂書局',
"url": 'https://joymall.co/2MX4o'
}
];
$scope.openurl = function(url) {
console.log(url);
}
});

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div id="container" ng-app="containArea" ng-controller="myCtrl">
<div id="sidebody" class="block">
<button ng-repeat="shopli in shopName" ng-click="openurl(shopli.url)" class="btn_shopList">
{{shopli.name}}
</button>
</div>
</div>








share|improve this answer















Use the value directly in ng-click function instead of using angular expression {{}}.



ng-click="openurl('''+shopli.url+''')"





var app = angular.module('containArea', );
app.controller('myCtrl', function($scope) {
$scope.shopName = [{
"name": 'momo購物網',
"url": 'https://buyforfun.biz/2LvEY'
},
{
"name": '金石堂書局',
"url": 'https://joymall.co/2MX4o'
}
];
$scope.openurl = function(url) {
console.log(url);
}
});

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div id="container" ng-app="containArea" ng-controller="myCtrl">
<div id="sidebody" class="block">
<button ng-repeat="shopli in shopName" ng-click="openurl(shopli.url)" class="btn_shopList">
{{shopli.name}}
</button>
</div>
</div>








var app = angular.module('containArea', );
app.controller('myCtrl', function($scope) {
$scope.shopName = [{
"name": 'momo購物網',
"url": 'https://buyforfun.biz/2LvEY'
},
{
"name": '金石堂書局',
"url": 'https://joymall.co/2MX4o'
}
];
$scope.openurl = function(url) {
console.log(url);
}
});

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div id="container" ng-app="containArea" ng-controller="myCtrl">
<div id="sidebody" class="block">
<button ng-repeat="shopli in shopName" ng-click="openurl(shopli.url)" class="btn_shopList">
{{shopli.name}}
</button>
</div>
</div>





var app = angular.module('containArea', );
app.controller('myCtrl', function($scope) {
$scope.shopName = [{
"name": 'momo購物網',
"url": 'https://buyforfun.biz/2LvEY'
},
{
"name": '金石堂書局',
"url": 'https://joymall.co/2MX4o'
}
];
$scope.openurl = function(url) {
console.log(url);
}
});

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div id="container" ng-app="containArea" ng-controller="myCtrl">
<div id="sidebody" class="block">
<button ng-repeat="shopli in shopName" ng-click="openurl(shopli.url)" class="btn_shopList">
{{shopli.name}}
</button>
</div>
</div>






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 22 '18 at 11:53

























answered Nov 22 '18 at 11:36









Ankit AgarwalAnkit Agarwal

24k52144




24k52144













  • Still nothing happened

    – 張睿玹
    Nov 22 '18 at 11:43











  • Still nothing happened upload.cc/i1/2018/11/22/03c6WG.png

    – 張睿玹
    Nov 22 '18 at 11:49













  • @張睿玹 just use ng-click="openurl(shopli.url)" without quotes. That should work for windows.open.

    – Ankit Agarwal
    Nov 22 '18 at 11:53











  • @ Shaheryar.Akram @Ankit Agarwal Thanks a lot ,it work.😊

    – 張睿玹
    Nov 22 '18 at 11:56













  • @張睿玹 glad to help

    – Ankit Agarwal
    Nov 22 '18 at 11:57



















  • Still nothing happened

    – 張睿玹
    Nov 22 '18 at 11:43











  • Still nothing happened upload.cc/i1/2018/11/22/03c6WG.png

    – 張睿玹
    Nov 22 '18 at 11:49













  • @張睿玹 just use ng-click="openurl(shopli.url)" without quotes. That should work for windows.open.

    – Ankit Agarwal
    Nov 22 '18 at 11:53











  • @ Shaheryar.Akram @Ankit Agarwal Thanks a lot ,it work.😊

    – 張睿玹
    Nov 22 '18 at 11:56













  • @張睿玹 glad to help

    – Ankit Agarwal
    Nov 22 '18 at 11:57

















Still nothing happened

– 張睿玹
Nov 22 '18 at 11:43





Still nothing happened

– 張睿玹
Nov 22 '18 at 11:43













Still nothing happened upload.cc/i1/2018/11/22/03c6WG.png

– 張睿玹
Nov 22 '18 at 11:49







Still nothing happened upload.cc/i1/2018/11/22/03c6WG.png

– 張睿玹
Nov 22 '18 at 11:49















@張睿玹 just use ng-click="openurl(shopli.url)" without quotes. That should work for windows.open.

– Ankit Agarwal
Nov 22 '18 at 11:53





@張睿玹 just use ng-click="openurl(shopli.url)" without quotes. That should work for windows.open.

– Ankit Agarwal
Nov 22 '18 at 11:53













@ Shaheryar.Akram @Ankit Agarwal Thanks a lot ,it work.😊

– 張睿玹
Nov 22 '18 at 11:56







@ Shaheryar.Akram @Ankit Agarwal Thanks a lot ,it work.😊

– 張睿玹
Nov 22 '18 at 11:56















@張睿玹 glad to help

– Ankit Agarwal
Nov 22 '18 at 11:57





@張睿玹 glad to help

– Ankit Agarwal
Nov 22 '18 at 11:57





Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter