gpt4 book ai didi

html - AngularJS:如何将默认值设置为 ng-model ="searchText"?

转载 作者:技术小花猫 更新时间:2023-10-29 12:05:46 30 4
gpt4 key购买 nike

我无法将默认值设置为 ng-model="searchText"。这是我正在使用的代码
<input ng-model="searchText" value="can you see me" />

谁能帮我解决这个问题?

最佳答案

第一个解决方案:是简单地在 Controller 中初始化 searchText。

App.controller('mainController',['$scope', function($scope) {
$scope.searchText = "can you see me";
}]);

第二个解决方案:是使用 ng-init insteat of value

<input ng-model="searchText" ng-init="searchText ='can you see me'"></input>

关于html - AngularJS:如何将默认值设置为 ng-model ="searchText"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30481366/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com