angular.js - AngularJS自定义指令,加入replace属性就出错,不能正常显示,求教啊

【字号: 日期:2022-12-25浏览:6作者:雯心

问题描述

这是我的代码,求教!

<input type='text' ng-model='theirUrl'> <p some-attr='{{theirUrl}}' my-text='Click me' my-directive> </p>angular.module('app',[]).directive(’myDirective’,function(){ return {restrict:’AE’,scope:{ myUrl: ’@someAttr’, myText:’@’},template:’<input type='text' ng-model='myUrl'/><br><a href='https://www.6hehe.com/wenda/{{myUrl}}'>{{myText}}</a>’ };

});

问题解答

回答1:

@someAttr是啥,@myUrl?

相关文章: