我想將值傳遞給我的指令而不隔離其範圍。指令屬性強制布爾值爲字符串
我的指令有一個鏈接功能來獲取屬性的值:
link: function(scope, element, attrs, ctrl) {
scope.myAttributeValue = attrs.myAttribute;
}
我願做
<directive my-attribute="{{true}}"></directive>
當我傳遞一個布爾值my-attribute
,它就會轉變成一個字符串。
如何將布爾值傳遞給my-attribute
?
您是否嘗試過'my-attribute =「true」'?此外,您的鏈接功能中存在拼寫錯誤(myAtribute缺少t)。你可能需要使用'scope.myAttributeValue = attrs.myAttribute!=='false';'。 –
可能的方法是嘗試添加布爾邏輯來強制它是一個布爾值而不是字符串?例如true == true –
你使用scope.myAttribute綁定了什麼? @,=或者&。檢查你的屬性簽名。如果您使用@,則該值將以字符串形式傳遞。 –