gpt4 book ai didi

javascript - 将内容替换为 ng-include 中文件的内容

转载 作者:行者123 更新时间:2023-12-03 12:11:13 25 4
gpt4 key购买 nike

如何将 div 中的内容替换为我在 ng-include 中使用的文件中的内容?

<div id="fish">
<button ng-click="getPartial()">

<div ng-model="include"></div>
</div>
$scope.getPartial = function()
{
$scope.include = "partials/invoices/editcustinvoice.html";
};

如何用 editcustinvoice 中的内容替换 Fish 中的内容?

最佳答案

如果您想在 View 中包含内容,您需要使用 ng-include 指令而不是 ng-model 请参阅此处的示例:http://plnkr.co/edit/N4KqRaro3CiOkzKpwEUZ?p=preview 或在此处阅读更多信息:https://docs.angularjs.org/api/ng/directive/ngInclude

var app = angular.module('plunker', []);

app.controller('MainCtrl', function($scope) {

$scope.getPartial = function()
{
$scope.include = "editcustinvoice.html";
};
});

HTML:

  <body ng-controller="MainCtrl">

<button ng-click="getPartial()">get partial</button>
<div ng-include="include"></div>
</body>

关于javascript - 将内容替换为 ng-include 中文件的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24958111/

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