Embedding a random MS Word word doc, which I found on the internet, works if I hard code the URL:
Here you need to import the angularjs predefined services:
$sanitize, $sce inject these in your controller and you can replace or redesign the url, beause of if you use directly it will not render that url, because it is one of the security policy to rendering the unwated thing on webpage,
In HTML:
In JS controller:
var app = angular.module('app', ['ngSanitize']);
app.controller('Ctrl', function($scope, $sanitize, $sce) {
var Url =
'http://yoururl.com.doc&embedded=true';
$scope.urlHere= $sce.trustAsResourceUrl(Url);
});