在這裏我有代碼在textarea中使用ng模型。我想獲得textarea的值,並添加一些靜態內容。然後添加到ng模型中。但它不起作用。 在這裏,我貼我的代碼: 在HTML:角js吳模型價值不工作在textarea
<textarea ng-model="user_text_comment" rows="5" Placeholder="Enter your comments" required="required"></textarea>
<button ng-click="addcardToComments(user_text_comment)"></button>
在控制器:
scope.user_text_comment = "";
$scope.addcardToComments = function(usercomment){
var addComments = "This is an appended text";
$scope.user_text_comment =usercomment.toString()+''+addComments;
console.log($scope.user_text_comment);
});
這裏CONSOLE.LOG打印修正值。但它在textarea中沒有改變。
你定義一些父標籤控制器? –
你能提供一個小提琴嗎? –
控制器的第1行可能是'$ scope.user_text_comment =「」;'而不是'scope.user_text_comment =「」;' –