的引導模式我想替換的警報中產生成功發送郵件角控制器的引導模式。 (實際的郵件發送香餑餑與PHPMailer的完成)調用從角控制器
所以,這是我的控制器:
// create angular controller
app.controller('form', function($scope) {
// function to submit the form after all validation has occurred
$scope.submitForm = function(isValid) {
// check to make sure the form is completely valid
if (isValid) {
alert('our form is amazing');
}
};
});
我想從alert('our form...')
該呼叫切換到<div class="modal fade in" class="".....</div>
現在這裏是其他我對此感到困惑。我想應該是一種將模式「存儲」在可以從控制器調用的東西中的方式,而不必將整個模態html放在那裏,對嗎?如果是這樣,我該怎麼做?
大多數人都使用'角-UI-bootstrap',擺脫'bootstrap.js' – charlietfl
我使用它!照顧我這個方向? :) – LOTUSMS
跟隨例如,在文檔... JS和HTML代碼顯示以及plunker演示鏈接 – charlietfl