0

こんにちは、Angular Material から mdDialog を表示し、ディレクティブ コントローラーをダイアログのコントローラーとして使用するという問題があります。これにより、特定の関数を呼び出すことができます。関数は正常に呼び出されますが、関数が正常に終了しても UI は更新されません。これでどこが間違っているのか誰かがわかるかどうか疑問に思っています。

ここでは、最初の if ステートメントが true であると仮定します。

ダイアログ呼び出し

this.showImageUploadModal = function() {
  $mdDialog.show({
      clickOutsideToClose: true,
      scope: $scope,        // use parent scope in template
      preserveScope: true,  // do not forget this if use parent scope
      templateUrl: 'app/directives/modals/upload-files-modal.html',
      controller: MessagingController,
      controllerAs: 'controller'
      });
};

関数が呼び出されているが UI を更新していない

this.addAttachment = function() {
  console.log("sending attachment");
  var ref = this;
  var note = this.user.first_name + " has attached a file.";

  if($state.current.name === 'inbox') {
    MessagingService.createMessage(this.convo.id, note, this.userUploadedNoteFiles).then(
      function success(response) {
        console.log("Inbox attachment sent", response);
        ref.convo.messages.push(response.data);
        console.log(ref.convo.messages);
        // ref.viewableNoteFiles = [];
      },
      function failure(response) {
        $mdToast.show(
          $mdToast.simple().
          textContent("Failed to send the message please try again.").
          theme('error-toast'));
      }
    );
  } else if (this.notes === 'true') {
    TicketingService.addNote($stateParams.id, note, this.userUploadedNoteFiles).then(
      function success(response) {
        console.log("Notes attachment sent", response);
        ref.convo.messages.push(response.data);
        // ref.viewableNoteFiles = [];
      },
      function failure(response) {
        $mdToast.show(
          $mdToast.simple().
          textContent("Failed to send the message please try again.").
          theme('error-toast'));
      }
    );
  } else if(this.contractor === 'true') {
    TicketingService.createMessage($stateParams.id, this.convo.id, note, this.userUploadedNoteFiles).then(
    function success (response) {
        console.log("Contractor attachment sent", response);
        ref.convo.messages.push(response.data);
    },
    function failure () {
      $mdToast.show(
        $mdToast.simple().
        textContent("Failed to upload the file attachments").
        theme('error-toast'));
    }
  );
  }

};
4

1 に答える 1